Created
May 20, 2011 23:47
-
-
Save avalanche123/984029 to your computer and use it in GitHub Desktop.
Dependency Injection in Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is what I mean by saying that active record in Ruby is dependency injectable, while static methods/new operators in PHP are not