(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| class NestedAttributesForStrategy | |
| def association(runner) | |
| runner.run | |
| end | |
| def result(evaluation) | |
| evaluation.object.tap do |instance| | |
| evaluation.notify(:after_build, instance) | |
| return attributes(instance) | |
| end |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| Post links to your game repositories as comments |
| class AppBuilder < Rails::AppBuilder | |
| include Thor::Actions | |
| include Thor::Shell | |
| def test | |
| append_test_gems | |
| rspec | |
| cucumber | |
| jasmine | |
| end |