Created
March 21, 2012 12:30
-
-
Save citizen428/2146609 to your computer and use it in GitHub Desktop.
ActionScript-like "with" for Ruby, result of SO discussion
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
module Kernel | |
def with(obj, &block) | |
obj.instance_eval &block | |
obj | |
end | |
end |
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
module Kernel | |
def with(obj, &block) | |
obj.instance_eval &block | |
obj | |
end | |
end | |
class Person | |
attr_accessor :name, :example | |
end | |
tester = with(Person.new) do | |
self.name = "Andy" | |
self.example = "Example" | |
end | |
puts "#{tester.name}:#{tester.example}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That makes sense. Thank you very much for explaining this in detail!