Skip to content

Instantly share code, notes, and snippets.

@chensoren
Created December 6, 2013 09:00
Show Gist options
  • Save chensoren/7820703 to your computer and use it in GitHub Desktop.
Save chensoren/7820703 to your computer and use it in GitHub Desktop.
Block Configuration
class Configuration
attr_accessor :username, :password
def initialize
yield self
end
end
c = Configuration.new do |config|
config.username = 'juan'
config.password = '123'
end
puts c.username
puts c.password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment