It feels good to stretch out.
Also, I committed an almost-worthless plugin for Rails called ez_temp_conversion which allows for basic Fahrenheit-to-Celsius (and vice versa) temperature conversion.
>> 32.f_to_c
=> 0.0
>> 37.c_to_f
=> 98.6
./script/plugin install http://svn.halogenlabs.com/rails_plugins/ez_temp_conversion/
It’s really a dead-simple monkeypatch to Numeric, so it’s not really specific to Rails. It should probably be bundled up as a gem or something, so I will get to that soon.