Skip to content

Instantly share code, notes, and snippets.

@torsday
Created March 12, 2013 12:36
Show Gist options
  • Save torsday/5142550 to your computer and use it in GitHub Desktop.
Save torsday/5142550 to your computer and use it in GitHub Desktop.
1. class Gear
2 attr_reader :chainring, :cog # <-------
3 def initialize(chainring, cog)
4 @chainring = chainring
5 @cog = cog
6 end
7
8 def ratio
9 chainring / cog.to_f # <-------
10 end
11 end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment