ObjectCascadable
module ObjectCascadable for Ruby
Installation
Add this line to your application's Gemfile:
gem 'object_cascadable'
And then execute:
$ bundle
Or install it yourself as:
$ gem install object_cascadable
Usage
require 'object_cascadable'
class MyClass
include ObjectCascadable
attr_accessor :foo
def initialize(&block)
cascade &block
end
end
c = MyClass.new {|obj| obj.foo = 10 }
Contributing
- Fork it ( https://github.com/[my-github-username]/object_cascadable/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request