--- rough notes ---
Gary introduces an side project that Gary has been working on part-time for an little over an year, including ...
| class Generation < Struct.new(:members) | |
| def to_a | |
| members | |
| end | |
| def sort | |
| members.sort! do |a,b| | |
| a.score <=> b.score | |
| end | |
| self |
| class RubbishController | |
| protected | |
| def redirect_to(path) | |
| puts "redirecting_to #{path}" | |
| end | |
| def render(renderable) | |
| puts "rendering #{renderable}" | |
| end | |
| def current_user |
--- rough notes ---
Gary introduces an side project that Gary has been working on part-time for an little over an year, including ...