Skip to content

Instantly share code, notes, and snippets.

@radar
Created May 19, 2016 05:22
Show Gist options
  • Save radar/514b29ae6e78ed18c20cbbb8e8d6cbba to your computer and use it in GitHub Desktop.
Save radar/514b29ae6e78ed18c20cbbb8e8d6cbba to your computer and use it in GitHub Desktop.
class Book
attr_accessor :name
def initialize(attrs={})
attrs.each do |k,v|
public_send("#{k}=", v)
end
@name = @name.capitalise
end
end
Book.new(name: "Rails 4 in Action")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment