Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created May 20, 2011 23:47
Show Gist options
  • Save avalanche123/984029 to your computer and use it in GitHub Desktop.
Save avalanche123/984029 to your computer and use it in GitHub Desktop.
Dependency Injection in Ruby
# not di
class UserController
def create(data)
User.new(data).save!
end
end
# usage
controller = UserController.new
controller.create :name => 'Bulat', :username => 'avalanche123'
# di
class UserController
def initialize(factory)
@factory = factory
end
def create(data)
@factory.new(data).save!
end
end
# usage
controller = UserController.new(User)
controller.create :name => 'Bulat', :username => 'avalanche123'
@avalanche123
Copy link
Author

this is what I mean by saying that active record in Ruby is dependency injectable, while static methods/new operators in PHP are not

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment