Skip to content

Instantly share code, notes, and snippets.

@udit99
udit99 / gist:569f990b91a06494be38
Created July 25, 2014 18:02
Ruby Co-routines Demo
# From top comment on http://www.reddit.com/r/ruby/comments/29hr4x/whats_youre_favorite_ruby_trick_or_quirk_that/?utm_source=rubyweekly&utm_medium=email
class FakeRedditApi
def initialize
@count = 0
end
def has_next_post?
class Chicken
end
class Beef
end
class Restaurant
module Cookable
def make_into dish
dish.make_into self
end
def to_s
self.class.to_s
end
end