Created
October 21, 2011 19:38
-
-
Save bkempner/1304733 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Foo | |
def initialize(options) | |
@bar = options.fetch(:bar, nil) | |
@baz = options.fetch(:baz, nil) | |
end | |
end | |
def Foo(options) | |
Foo.new(options) | |
end | |
ruby-1.9.2-p290 :028 > f = Foo bar: 'chuck', baz: 'testa' | |
=> #<Foo:0x007ffdd407fec0 @foo="chuck", @bar="testa"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ahhh. That's an important catch. Cool!