Skip to content

Instantly share code, notes, and snippets.

@kevinmccaughey
Created May 1, 2014 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinmccaughey/551af2908648ff9bb5cf to your computer and use it in GitHub Desktop.
Save kevinmccaughey/551af2908648ff9bb5cf to your computer and use it in GitHub Desktop.
class TeamBuilder
attr_reader :domain, :params
def initialize(domain, params = {})
@domain = domain
@params = params
end
def build
domain.teams.build(params)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment