Skip to content

Instantly share code, notes, and snippets.

View pjurczynski's full-sized avatar
💭
I may be slow to respond.

Piotr Jurczyński pjurczynski

💭
I may be slow to respond.
  • Pix4d
  • Switzerland, Lausanne
View GitHub Profile
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
@staltz
staltz / introrx.md
Last active July 7, 2025 10:24
The introduction to Reactive Programming you've been missing
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