Skip to content

Instantly share code, notes, and snippets.

@hackjoy
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save hackjoy/ea7419420aaea03f444b to your computer and use it in GitHub Desktop.

Select an option

Save hackjoy/ea7419420aaea03f444b to your computer and use it in GitHub Desktop.
bottles_lib_5.rb
class Bottles
# ... verse() method not shown for brevity ...
def verses(upper_bound, lower_bound)
upper_bound
.downto(lower_bound)
.collect {|verse_number| verse(verse_number)}
.join("\n")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment