Hidden features of Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:18:40Z http://stackoverflow.com/feeds/question/63998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/63998/hidden-features-of-ruby 34 Hidden features of Ruby squadette 2008-09-15T15:34:28Z 2009-12-11T13:02:31Z <p>Continuing the "Hidden features of ..." meme, let's share the lesser-known but useful features of Ruby programming language.</p> <p>Try to limit this discussion with core Ruby, without any Ruby on Rails stuff.</p> <p>See also:</p> <ul> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li> <li><a href="http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails">Hidden features of Ruby on Rails</a></li> </ul> <p>(Please, just <em>one</em> hidden feature per answer.)</p> <p>Thank you</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64080#64080 4 Answer by CodingWithoutComments for Hidden features of Ruby CodingWithoutComments 2008-09-15T15:44:16Z 2008-09-15T16:01:21Z <p>I find using the <strong>define_method</strong> command to dynamically generate methods to be quite interesting and not as well known. For example:</p> <pre><code>((0..9).each do |n| define_method "press_#{n}" do @number = @number.to_i * 10 + n end end </code></pre> <p>The above code uses the 'define_method' command to dynamically create the methods "press1" through "press9." Rather then typing all 10 methods which essentailly contain the same code, the define method command is used to generate these methods on the fly as needed.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64099#64099 5 Answer by CodingWithoutComments for Hidden features of Ruby CodingWithoutComments 2008-09-15T15:45:58Z 2008-09-15T15:53:01Z <p>The <strong>send()</strong> method is a general-purpose method that can be used on any Class or Object in Ruby. If not overridden, send() accepts a string and calls the name of the method whose string it is passed. For example, if the user clicks the “Clr” button, the ‘press_clear’ string will be sent to the send() method and the ‘press_clear’ method will be called. The send() method allows for a fun and dynamic way to call functions in Ruby.</p> <pre><code> %w(7 8 9 / 4 5 6 * 1 2 3 - 0 Clr = +).each do |btn| button btn, :width =&gt; 46, :height =&gt; 46 do method = case btn when /[0-9]/: 'press_'+btn when 'Clr': 'press_clear' when '=': 'press_equals' when '+': 'press_add' when '-': 'press_sub' when '*': 'press_times' when '/': 'press_div' end number.send(method) number_field.replace strong(number) end end </code></pre> <p>I talk more about this feature in <a href="http://www.codingwithoutcomments.com/2008/09/01/blogging-shoes-the-simple-calc-application/" rel="nofollow">Blogging Shoes: The Simple-Calc Application</a></p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64124#64124 10 Answer by manveru for Hidden features of Ruby manveru 2008-09-15T15:49:07Z 2008-09-15T15:49:07Z <p>Download Ruby 1.9 source, and issue <code>make golf</code>, then you can do things like this:</p> <pre><code>make golf ./goruby -e 'h' # =&gt; Hello, world! ./goruby -e 'p St' # =&gt; StandardError ./goruby -e 'p 1.tf' # =&gt; 1.0 ./goruby19 -e 'p Fil.exp(".")' "/home/manveru/pkgbuilds/ruby-svn/src/trunk" </code></pre> <p>Read the <code>golf_prelude.c</code> for more neat things hiding away.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64427#64427 3 Answer by James A. Rosen for Hidden features of Ruby James A. Rosen 2008-09-15T16:27:50Z 2008-09-15T23:51:44Z <p>use anything that responds to <code>===(obj)</code> for case comparisons:</p> <pre><code>case foo when /baz/ do_something_with_the_string_matching_baz when 12..15 do_something_with_the_integer_between_12_and_15 when lambda { |x| x % 5 == 0 } # only works in Ruby 1.9 or if you alias Proc#call as Proc#=== do_something_with_the_integer_that_is_a_multiple_of_5 when Bar do_something_with_the_instance_of_Bar when some_object do_something_with_the_thing_that_matches_some_object end </code></pre> <p><code>Module</code> (and thus <code>Class</code>), <code>Regexp</code>, <code>Date</code>, and many other classes define an instance method :===(other), and can all be used.</p> <p>Thanks to <a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby#65015">Farrel</a> for the reminder of <code>Proc#call</code> being aliased as <code>Proc#===</code> in Ruby 1.9.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64458#64458 27 Answer by James A. Rosen for Hidden features of Ruby James A. Rosen 2008-09-15T16:31:32Z 2008-09-15T16:31:32Z <p>Peter Cooper has a <a href="http://www.rubyinside.com/21-ruby-tricks-902.html" rel="nofollow">good list</a> of Ruby tricks. Perhaps my favorite of his is allowing both single items and collections to be enumerated. (That is, treat a non-collection object as a collection containing just that object.) It looks like this:</p> <pre><code>[*items].each do |item| # ... end </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64502#64502 4 Answer by Scott Holden for Hidden features of Ruby Scott Holden 2008-09-15T16:36:01Z 2008-09-15T16:36:01Z <p>How about opening a file based on ARGV[0]?</p> <p>readfile.rb:</p> <p>$&lt;.each_line{|l| puts l}</p> <p>ruby readfile.rb testfile.txt</p> <p>It's a great shortcut for writing one-off scripts. There's a whole mess of pre-defined variables that most people don't know about. Use them wisely (read: don't litter a code base you plan to maintain with them, it can get messy).</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64956#64956 4 Answer by TALlama for Hidden features of Ruby TALlama 2008-09-15T17:31:17Z 2008-09-15T17:31:17Z <p>A lot of the magic you see in Rubyland has to do with metaprogramming, which is simply writing code that writes code for you. Ruby's <code>attr_accessor</code>, <code>attr_reader</code>, and <code>attr_writer</code> are all simple metaprogramming, in that they create two methods in one line, following a standard pattern. Rails does a whole lot of metaprogramming with their relationship-management methods like <code>has_one</code> and <code>belongs_to</code>.</p> <p>But it's pretty simple to create your own metaprogramming tricks using <code>class_eval</code> to execute dynamically-written code.</p> <p>The following example allows a wrapper object to forwards certain methods along to an internal object:</p> <pre><code>class Wrapper attr_accessor :internal def self.forwards(*methods) [*methods].each do |method| class_eval(" def #{method}(*args, &amp;blk) self.internal.send(#{method.to_sym.inspect}, *args, &amp;blk) end ") end end forwards :to_i, :length, :split end w = Wrapper.new w.internal = "12 13 14" puts w.to_i puts w.length puts w.split('1') </code></pre> <p>Note the use of <code>[*methods]</code> (pointed out elsewhere in this thread) to enumerate over the arguments given. Then, for each of those given, we use class_eval to create a new method whose job it is to send the message along, including all arguments and blocks.</p> <p>A great resource for metaprogramming issues is <a href="http://whytheluckystiff.net/articles/seeingMetaclassesClearly.html" rel="nofollow">Why the Lucky Stuff's "Seeing Metaprogramming Clearly"</a>.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/65015#65015 16 Answer by Farrel for Hidden features of Ruby Farrel 2008-09-15T17:41:22Z 2008-09-15T21:41:30Z <p>From Ruby 1.9 Proc#=== is an alias to Proc#call, which means Proc objects can be used in case statements like so:</p> <pre><code>def multiple_of(factor) Proc.new{|product| product.modulo(factor).zero?} end case number when multiple_of(3): puts "Multiple of 3" when multiple_of(7): puts "Multuple of 7" end </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/68037#68037 3 Answer by olegueret for Hidden features of Ruby olegueret 2008-09-15T23:51:16Z 2008-09-15T23:51:16Z <p>Fool some class or module telling it has required something that it really hasn't required:</p> <pre><code>$" &lt;&lt; "something" </code></pre> <p>This is useful for example when requiring A that in turns requires B but we don't need B in our code (and A won't use it either through our code):</p> <p>For example, Backgroundrb's <code>bdrb_test_helper requires</code> <code>'test/spec'</code>, but you don't use it at all, so in your code:</p> <pre><code>$" &lt;&lt; "test/spec" require File.join(File.dirname(__FILE__) + "/../bdrb_test_helper") </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/68205#68205 3 Answer by hoyhoy for Hidden features of Ruby hoyhoy 2008-09-16T00:22:09Z 2008-09-16T00:22:09Z <p>The Symbol#to_proc function that Rails provides is really cool. </p> <p>Instead of</p> <pre><code>Employee.collect { |emp| emp.name } </code></pre> <p>You can write:</p> <pre><code>Employee.collect(&amp;:name) </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/69091#69091 8 Answer by Captain Hammer for Hidden features of Ruby Captain Hammer 2008-09-16T03:08:32Z 2008-09-16T03:08:32Z <p>Warning: this item was voted #1 <strong><em>Most Horrendous Hack of 2008</em></strong>, so use with care. Actually, avoid it like the plague, but it is most certainly Hidden Ruby.</p> <h2>Superators Add New Operators to Ruby</h2> <p>Ever want a super-secret handshake operator for some unique operation in your code? Like playing code golf? Try operators like -~+~- or &lt;--- That last one is used in the examples for reversing the order of an item.</p> <p>I have nothing to do with the <a href="http://jicksta.com/posts/superators-add-new-operators-to-ruby" rel="nofollow">Superators Project</a> beyond admiring it.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/70116#70116 7 Answer by Farrel for Hidden features of Ruby Farrel 2008-09-16T07:39:33Z 2008-09-16T07:45:35Z <p>Another fun addition in 1.9 Proc functionality is Proc#curry which allows you to turn a Proc accepting n arguments into one accepting n-1. Here it is combined with the Proc#=== tip I mentioned above:</p> <pre><code>it_is_day_of_week = lambda{ |day_of_week, date| date.wday == day_of_week } it_is_saturday = it_is_day_of_week.curry[6] it_is_sunday = it_is_day_of_week.curry[0] case Time.now when it_is_saturday puts "Saturday!" when it_is_sunday puts "Sunday!" else puts "Not the weekend" end </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/70203#70203 16 Answer by astronautism for Hidden features of Ruby astronautism 2008-09-16T07:53:31Z 2008-09-16T07:53:31Z <p>Don't know how hidden this is, but I've found it useful when needing to make a Hash out of a one-dimensional array:</p> <pre><code>fruit = ["apple","red","banana","yellow"] =&gt; ["apple", "red", "banana", "yellow"] Hash[*fruit] =&gt; {"apple"=&gt;"red", "banana"=&gt;"yellow"} </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/70286#70286 21 Answer by tomafro for Hidden features of Ruby tomafro 2008-09-16T08:14:19Z 2008-09-16T08:14:19Z <p>One trick I like it to use the splat(*) expander on objects other than Arrays. Here's an example on a regular expression match:</p> <pre><code>match, text, number = *"Something 981".match(/([A-z]*) ([0-9]*)/) </code></pre> <p>Other examples include:</p> <pre><code>a, b, c = *('A'..'Z') Job = Struct.new(:name, :occupation) tom = Job.new("Tom", "Developer") name, occupation = *tom </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/85310#85310 12 Answer by tomafro for Hidden features of Ruby tomafro 2008-09-17T16:56:16Z 2008-09-19T10:57:23Z <p>Another tiny feature - convert a <code>Fixnum</code> into any base up to 36:</p> <pre><code>&gt;&gt; 1234567890.to_s(2) =&gt; "1001001100101100000001011010010" &gt;&gt; 1234567890.to_s(8) =&gt; "11145401322" &gt;&gt; 1234567890.to_s(16) =&gt; "499602d2" &gt;&gt; 1234567890.to_s(24) =&gt; "6b1230i" &gt;&gt; 1234567890.to_s(36) =&gt; "kf12oi" </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/86238#86238 6 Answer by tomafro for Hidden features of Ruby tomafro 2008-09-17T18:40:01Z 2008-09-17T18:40:01Z <p>One final one - in ruby you can use any character you want to delimit strings. Take the following code:</p> <pre><code>message = "My message" contrived_example = "&lt;div id=\"contrived\"&gt;#{message}&lt;/div&gt;" </code></pre> <p>If you don't want to escape the double-quotes within the string, you can simply use a different delimiter:</p> <pre><code>contrived_example = %{&lt;div id="contrived-example"&gt;#{message}&lt;/div&gt;} contrived_example = %[&lt;div id="contrived-example"&gt;#{message}&lt;/div&gt;] </code></pre> <p>As well as avoiding having to escape delimiters, you can use these delimiters for nicer multiline strings:</p> <pre><code>sql = %{ SELECT strings FROM complicated_table WHERE complicated_condition = '1' } </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/116759#116759 10 Answer by newtonapple for Hidden features of Ruby newtonapple 2008-09-22T18:56:02Z 2008-09-23T08:18:13Z <h1>module_function</h1> <p>Module methods that are declared as *module_function* will create copies of themselves as <strong>private</strong> instance methods in the class that includes the Module:</p> <pre><code>module M def not! 'not!' end module_function :not! end class C include M def fun not! end end M.not! # =&gt; 'not! C.new.fun # =&gt; 'not!' C.new.not! # =&gt; NoMethodError: private method `not!' called for #&lt;C:0x1261a00&gt; </code></pre> <p>If you use *module_function* without any arguments, then any module methods that comes after the module_function statement will automatically become module_functions themselves.</p> <pre><code>module M module_function def not! 'not!' end def yea! 'yea!' end end class C include M def fun not! + ' ' + yea! end end M.not! # =&gt; 'not!' M.yea! # =&gt; 'yea!' C.new.fun # =&gt; 'not! yea!' </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/224276#224276 2 Answer by Justin Love for Hidden features of Ruby Justin Love 2008-10-22T02:28:07Z 2008-10-22T02:28:07Z <p><code>Class.new()</code></p> <p>Create a new class at run time. The argument can be a class to derive from, and the block is the class body. You might also want to look at <code>const_set/const_get/const_defined?</code> to get your new class properly registered, so that <code>inspect</code> prints out a name instead of a number.</p> <p>Not something you need every day, but quite handy when you do.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/327208#327208 2 Answer by Dustin for Hidden features of Ruby Dustin 2008-11-29T05:17:42Z 2008-11-29T05:17:42Z <p>Ruby has a <a href="http://gd.tuwien.ac.at/languages/scheme/tutorial-dsitaram/t-y-scheme-Z-H-14.html#%_sec_13.1" rel="nofollow">call/cc</a> mechanism allowing one to freely hop up and down the stack.</p> <p>Simple example follows. This is certainly not how one would multiply a sequence in ruby, but it demonstrates how one might use call/cc to reach up the stack to short-circuit an algorithm. In this case, we're recursively multiplying a list of numbers until we either have seen every number or we see zero (the two cases where we know the answer). In the zero case, we can be arbitrarily deep in the list and terminate.</p> <pre><code>#!/usr/bin/env ruby def rprod(k, rv, current, *nums) puts "#{rv} * #{current}" k.call(0) if current == 0 || rv == 0 nums.empty? ? (rv * current) : rprod(k, rv * current, *nums) end def prod(first, *rest) callcc { |k| rprod(k, first, *rest) } end puts "Seq 1: #{prod(1, 2, 3, 4, 5, 6)}" puts "" puts "Seq 2: #{prod(1, 2, 0, 3, 4, 5, 6)}" </code></pre> <p>You can see the output here:</p> <p><a href="http://codepad.org/Oh8ddh9e" rel="nofollow">http://codepad.org/Oh8ddh9e</a></p> <p>For a more complex example featuring continuations moving the other direction on the stack, read the source to <a href="http://www.ruby-doc.org/stdlib/libdoc/generator/rdoc/index.html" rel="nofollow">Generator</a>. </p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/474888#474888 3 Answer by bjeanes for Hidden features of Ruby bjeanes 2009-01-23T22:35:34Z 2009-12-04T13:00:13Z <p>One of the cool things about ruby is that you can call methods and run code in places other languages would frown upon, such as in method or class definitions.</p> <p>For instance, to create a class that has an unknown superclass until run time, i.e. is random, you could do the following:</p> <pre><code>class RandomSubclass &lt; [Array, Hash, String, Fixnum, Float, TrueClass].choice end RandomSubclass.superclass # could output one of 6 different classes. </code></pre> <p>This uses the 1.8.7 <code>Array#choice</code> method, and the example is pretty contrived but you can see the power here. </p> <p>Another cool example is the ability to put default parameter values that are non fixed (like other languages often demand):</p> <pre><code>def do_something_at(something, at = Time.now) # ... end </code></pre> <p>Of course the problem with the first example is that it is evaluated at definition time, not call time. So, once a superclass has been chosen, it stays that superclass for the remainder of the program. </p> <p>However, in the second example, each time you call <code>do_something_at</code>, the <code>at</code> variable will be the time that the method was called (well, very very close to it)</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/827932#827932 -1 Answer by Chirantan for Hidden features of Ruby Chirantan 2009-05-06T03:39:40Z 2009-12-11T13:02:31Z <pre><code>class A private def my_private_method puts 'private method called' end end a = A.new a.my_private_method # Raises exception saying private method was called a.send :my_private_method # Calls my_private_method and prints private method called' </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1061004#1061004 1 Answer by unknown (google) for Hidden features of Ruby unknown (google) 2009-06-29T23:05:14Z 2009-06-29T23:05:14Z <p>Short inject, like such:</p> <p><a href="http://weblog.raganwald.com/2008/02/1100inject.html" rel="nofollow">Sum of range:</a></p> <pre><code>(1..10).inject(:+) =&gt; 55 </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1061835#1061835 3 Answer by August Lilleaas for Hidden features of Ruby August Lilleaas 2009-06-30T05:09:36Z 2009-06-30T05:09:36Z <p>Hashes with default values! An array in this case.</p> <pre><code>parties = Hash.new {|hash, key| hash[key] = [] } parties["Summer party"] # =&gt; [] parties["Summer party"] &lt;&lt; "Joe" parties["Other party"] &lt;&lt; "Jane" </code></pre> <p>Very useful in metaprogramming.</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1140464#1140464 2 Answer by Ropez for Hidden features of Ruby Ropez 2009-07-16T21:37:02Z 2009-07-16T21:37:02Z <p>I find this useful in some scripts. It makes it possible to use environment variables directly, like in shell scripts and Makefiles. Environment variables are used as fall-back for undefined Ruby constants.</p> <pre><code>&gt;&gt; class &lt;&lt;Object &gt;&gt; alias :old_const_missing :const_missing &gt;&gt; def const_missing(sym) &gt;&gt; ENV[sym.to_s] || old_const_missing(sym) &gt;&gt; end &gt;&gt; end =&gt; nil &gt;&gt; puts SHELL /bin/zsh =&gt; nil &gt;&gt; TERM == 'xterm' =&gt; true </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1224534#1224534 1 Answer by banister for Hidden features of Ruby banister 2009-08-03T20:44:51Z 2009-08-03T20:44:51Z <p>create an array of consecutive numbers:</p> <pre><code>x = [*0..5] </code></pre> <p>sets x to [0, 1, 2, 3, 4, 5]</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1540615#1540615 3 Answer by Jordan for Hidden features of Ruby Jordan 2009-10-08T21:29:33Z 2009-10-08T21:29:33Z <p>I'm late to the party, but:</p> <p>You can easily take two equal-length arrays and turn them into a hash with one array supplying the keys and the other the values:</p> <pre><code>a = [:x, :y, :z] b = [123, 456, 789] Hash[a.zip(b)] # =&gt; { :x =&gt; 123, :y =&gt; 456, :z =&gt; 789 } </code></pre> <p>(This works because Array#zip "zips" up the values from the two arrays:</p> <pre><code>a.zip(b) # =&gt; [[:x, 123], [:y, 456], [:z, 789]] </code></pre> <p>And Hash[] can take just such an array. I've seen people do this as well:</p> <pre><code>Hash[*a.zip(b).flatten] # unnecessary! </code></pre> <p>Which yields the same result, but the splat and flatten are wholly unnecessary--perhaps they weren't in the past?)</p> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/1817710#1817710 0 Answer by banister for Hidden features of Ruby banister 2009-11-30T03:30:00Z 2009-11-30T03:30:00Z <p>Use a Range object as an infinite lazy list:</p> <pre><code>Inf = 1.0 / 0 (1..Inf).take(5) #=&gt; [1, 2, 3, 4, 5] </code></pre> <p>More info here: <a href="http://banisterfiend.wordpress.com/2009/10/02/wtf-infinite-ranges-in-ruby/" rel="nofollow">http://banisterfiend.wordpress.com/2009/10/02/wtf-infinite-ranges-in-ruby/</a></p>