react.rb
react.rb copied to clipboard
The on(:event_name) method should take multiple events
For example
Foo().on(:save) { do_something }.on(:cancel) { do_something}
should be
Foo().on(:save, :cancel) {do_something}
This issue was moved to reactrb/reactrb#132