Where is the best place to add methods to the Integer class in Rails? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:15:09Zhttp://stackoverflow.com/feeds/question/266819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails3Where is the best place to add methods to the Integer class in Rails?Ben2008-11-05T21:42:41Z2008-11-07T09:32:18Z
<p>Where is the best place to add a method to the integer class in Rails?
I'd like to add a <code>to_meters</code> and <code>to_miles</code> methods.</p>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/266840#2668402Answer by Zak for Where is the best place to add methods to the Integer class in Rails?Zak 2008-11-05T21:47:13Z2008-11-05T21:47:13Z<p>Normally (and logically), integers can't be converted to miles or to meters. It sounds like you may want to create a new class like "Feet" or "inches" that is initialized with an integer, then contains methods like size_in_miles or size_in_meters. For convenience those methods could return decimal or float types, but you might also want to write a miles class or a meters class.</p>
<p>As an alternate method, you might want to create a static method in your new class that would have a signature like this:</p>
<p>Float feetToMiles(integer I)</p>
<p>that you would call </p>
<p>miles = Feet.feetToMiles(5280);</p>
<p>and get miles = 1.0</p>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/266845#2668451Answer by Kent Fredric for Where is the best place to add methods to the Integer class in Rails?Kent Fredric2008-11-05T21:48:47Z2008-11-05T22:25:50Z<p>Create your own module/library which you include into scope when you need it to perform this task. </p>
<p>Such as "requre 'unitCoversions' " </p>
<p>And Chances are, somebody has already done this if you look hard enough :)</p>
<p>However <em>DONT</em> try modifying the native core class, that will only end in Misery. </p>
<p>( Also, the class you want to extend is 'numeric' , that will apply to both Integers and Floats :) ) </p>
<blockquote>
<p>Not entirely clear why I shouldn't do this... Rails does this to the string class to great success. </p>
</blockquote>
<p>Because it <em>can</em> be done doesn't mean it <em>should</em> be done. 'Monkey Patching' as it is known can have all sorts of odd side effects, and they can be an epic failure when done wrong. </p>
<p>Do it when there is no good alternative. </p>
<p>Because if you really wanted to do something daft, you could build an entire framework that <em>ALL</em> it did was monkey patch the core classes. </p>
<p>Just for example, flip databasing on its head. </p>
<pre><code>5.getArtist();
10.getEvent();
100.getTrack();
</code></pre>
<p>etc etc. there is no limit to how many bad ways there are to do that. </p>
<pre><code>"Bob".createUser();
</code></pre>
<p>misery in a cup. </p>
<p>If you want to do something practical, have a Convert class or function, </p>
<pre><code>convert( 3 , { :from=>:miles, :to=>:meters });
</code></pre>
<p>at least you're not polluting the global namespace and core functions that way and it makes more coherent sense. </p>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/266867#2668670Answer by jonnii for Where is the best place to add methods to the Integer class in Rails?jonnii2008-11-05T21:53:49Z2008-11-05T21:53:49Z<p>If you were going to do this, which you shouldn't, then you would put your code into:</p>
<pre><code>config/initializers/add_methods_that_are_naughty_to_numeric.rb
</code></pre>
<p>Rails would automatically run these for you.</p>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/267325#2673252Answer by Cameron Booth for Where is the best place to add methods to the Integer class in Rails?Cameron Booth2008-11-06T00:50:26Z2008-11-06T00:50:26Z<p>Why not just:</p>
<pre><code>class Feet
def self.in_miles(feet)
feet/5280
end
end
</code></pre>
<p>usage:</p>
<pre><code>Feet.in_miles 2313
</code></pre>
<p>Or maybe look at it the other way:</p>
<pre><code>class Miles
def self.from_feet(feet)
feet/5280
end
end
Miles.from_feet 2313
</code></pre>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/270115#2701152Answer by danmayer for Where is the best place to add methods to the Integer class in Rails?danmayer2008-11-06T20:25:51Z2008-11-06T20:25:51Z<p>I agree monkey patching should be used with care, but occasionally it just make sense. I really like the helpers that allow you to type 5.days.ago which are part of the active_support library</p>
<p>So some of the other answers might be better in this case, but if you are extending ruby classes we keep all our extensions in lib/extensions/class_name.rb</p>
<p>this way when working on a project it is quick and easy to find and see anything that might be out of the ordinary with standard classes.</p>
http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/271621#2716215Answer by dennisjbell for Where is the best place to add methods to the Integer class in Rails?dennisjbell2008-11-07T09:32:18Z2008-11-07T09:32:18Z<p>If you have your heart set on mucking with the Numeric (or integer, etc) class to get unit conversion, then at least do it logically and with some real value. </p>
<p>First, create a Unit class that stores the unit type (meters,feet, cubits, etc.) and the value on creation. Then add a bunch of methods to Numeric that correspond to the valid values unit can have: these methods will return a Unit object with it's type recorded as the method name. The Unit class would support a bunch of to_* methods that would convert to another unit type with the corresponding unit value. That way, you can do the following command:</p>
<pre><code>>> x = 47.feet.to_meters
=> 14.3256
>> x.inspect
=> #<Unit 0xb795efb8 @value=14.3256, @type=:meter>
</code></pre>
<p>The best way to handle it would probably be a matrix of conversion types and expressions in the Unit class, then use method_missing to check if a given type can be converted to another type. In the numeric class, use method_missing to ask Unit if it supports the given method as a unit type, and if so, return a unit object of the requested type using the numeric as its value. You could then support adding units and conversions at runtime by adding a register_type and register_conversion class method to Unit that extended the conversion matrix and Numeric would "automagically" pick up the ability.</p>
<p>As for where to put it, create a lib/units.rb file, which would also contain the monkey_patch to Numeric, then initialize it in config/environment.rb bu requiring the lib/units.rb file.</p>