active questions tagged ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:37:24Z http://stackoverflow.com/feeds/tag/ruby http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818597/testing-and-establishconnection 1 testing and establish_connection Alexey Poimtsev 2009-11-30T08:54:49Z 2009-11-30T10:24:08Z <p>Hi, could you tell me plz - how to write tests for projects, which uses in model establish_connection to connect another database?</p> http://stackoverflow.com/questions/1818518/question-about-overriding-initialize-method 1 question about overriding initialize method Richard Huang 2009-11-30T08:27:07Z 2009-11-30T09:48:37Z <p>I encountered a strange question about override initialize message of BigDecimal.</p> <pre><code>class Test1 &lt; String def initialize(a, b) puts a puts b end end require 'bigdecimal' class Test2 &lt; BigDecimal def initialize(a, b) puts a puts b end end &gt;&gt; Test1.new('a', 'b') a b &gt;&gt; Test2.new('a', 'b') TypeError: wrong argument type String (expected Fixnum) from (irb):17:in `new' from (irb):17 </code></pre> <p>Why I can override the initialize message of String, but not of BigDecimal?</p> http://stackoverflow.com/questions/1803728/why-does-mysqldump-need-to-be-fully-pathed-when-called-from-a-controller-or-model 0 Why does mysqldump need to be fully pathed when called from a controller or model? Kris 2009-11-26T13:41:05Z 2009-11-30T09:42:29Z <p>When I call <code>mysqldump</code> from a controller or model I need to fully path the binary, when I call it from Rake I don't need to.</p> <p>If I do not fully path I get a zero byte file...</p> <p>I can confirm both processes are run using the same user.</p> <pre><code># Works in a controller, model and Rake task system "/usr/local/mysql/bin/mysqldump -u root #{w.database_name} &gt; #{target_file}" # Only works in a Rake task system "mysqldump -u root #{w.database_name} &gt; #{target_file}" </code></pre> <p>If I call the Rake task from the action it also fails (zero byte file).</p> <p>OS: Mac Ruby 1.8.6</p> <p>EDIT: I use <code>Etc.getpwuid(Process.uid).name</code> to get the User of the current process</p> http://stackoverflow.com/questions/1818277/how-do-i-set-windows-related-file-attributes-in-ruby 0 How do I set Windows-related file attributes in ruby? Andrew Grimm 2009-11-30T07:14:18Z 2009-11-30T09:40:19Z <p>How do I tell ruby to create files with the attributes <code>FILE_ATTRIBUTE_TEMPORARY</code> and <code>FILE_FLAG_DELETE_ON_CLOSE</code>?</p> http://stackoverflow.com/questions/1076116/support-for-imap-idle-in-ruby 1 Support for IMAP IDLE in ruby Asaxena 2009-07-02T19:01:35Z 2009-11-30T09:19:42Z <p>Ok, I have been suck on it for hours. I thought net/imap.rb with ruby 1.9 supported the idle command, but not yet.</p> <p>Can anyone help me in implementing that? From <a href="http://www.ruby-forum.com/topic/50828" rel="nofollow">here</a>, I though this would work:</p> <pre><code>class Net::IMAP def idle cmd = "IDLE" synchronize do tag = generate_tag put_string(tag + " " + cmd) put_string(CRLF) end end def done cmd = "DONE" synchronize do put_string(cmd) put_string(CRLF) end end end </code></pre> <p>But imap.idle with that just return nil.</p> http://stackoverflow.com/questions/1815686/datamapper-has-n-through-resource-delete-remove-from-association-not-working 0 DataMapper has n through Resource DELETE (Remove from association) not working ludicco 2009-11-29T14:35:51Z 2009-11-30T07:05:17Z <p>Hi,</p> <p>I'm have this two classes</p> <pre><code>class User include DataMapper::Resource property :id, Serial property :name, String has n :posts, :through =&gt; Resource end class Post include DataMapper::Resource property :id, Serial property :title, String property :body, Text has n :users, :through =&gt; Resource end </code></pre> <p>So once I have a new post like:</p> <pre><code>Post.new(:title =&gt; "Hello World", :body = "Hi there").save </code></pre> <p>I'm having serious problems to add and remove from the association, like:</p> <pre><code>User.first.posts &lt;&lt; Post.first #why do I have to save this as oppose from AR? (User.first.posts &lt;&lt; Post.first).save #this just works if saving the insertion later </code></pre> <p>and how should I remove a post from that association? I'm using the following but definitely its not working:</p> <pre><code>User.first.posts.delete(Post.first) #returns the Post.first, but nothing happens User.first.posts.delete(Post.first).save #returns true, but nothing happpens User.first.posts.delete(Post.first).destroy #destroy the Post.first, not the association </code></pre> <p>So I really don't know how to delete this from the BoltUser Array,</p> <p>Any Help please?</p> <p>Thank you very much :)</p> <p><hr></p> <p>UPDATE: I Managed to do it by doing:</p> <pre><code>#to add user_posts = User.first.posts user_posts &lt;&lt; Bolt.first user_posts.save #to remove user_posts.delete(Bolt.first) user_posts.save </code></pre> <p>I think the only way to do it is working with the instance actions, do your changes on that instance and after you finished, just save it. It's kind of different from AR but, its cool though.</p> <p>I'm not sure if its possible to do it with any other method, but this is fine for now :)</p> http://stackoverflow.com/questions/1793863/datamapper-has-n-with-conditions 0 DataMapper has n with conditions ludicco 2009-11-25T00:11:00Z 2009-11-30T06:54:59Z <p>Hello,</p> <p>By any chance is it possible to create a conditional association with DataMapper?</p> <p>For example:</p> <p>I want the User have n Apps just if that user have the attribute <code>:developer => true</code></p> <p>something like this:</p> <pre><code>class User include DataMapper::Resource property :id, Serial property :name, String, :nullable =&gt; false property :screen_name, String, :nullable =&gt; false, :unique =&gt; true property :email, String, :nullable =&gt; false, :unique =&gt; true, :format =&gt; :email_address property :password, BCryptHash, :nullable =&gt; false property :developer, Boolean, :default =&gt; false #The user just gets apps if developer has n :apps #,:conditions =&gt; "developer = 't'" end class App include DataMapper::Resource property :id, Serial property :name, String, :nullable =&gt; false belongs_to :user end </code></pre> <p>I know that this would be possible by creating a subclass from User as a Developer::User and in that class, use the <code>has n</code>, but I really would like to know if its possible to make it directly on the association declaration. </p> <p>Another way I also managed to do when using ARn was to extend the association and rewriting the methods for each action.</p> <p>So on the extension module I could have something like this:</p> <pre><code>module PreventDeveloperActions def new if proxy_owner.developer? super else raise NoMethodError, "Only Developers can create new applications" end end # and so on for all the actions ... end </code></pre> <p>But again, I really would like to avoid the use of this solutions if possible, but just if it's possible to perform a quick and direct method easily with DataMapper :)</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1816378/how-to-randomly-sort-scramble-an-array-in-ruby 4 How to randomly sort (scramble) an array in Ruby? Daniel Cukier 2009-11-29T18:45:59Z 2009-11-30T06:23:08Z <p>I'd like to have my array items scrambled. Something like this:</p> <pre><code>[1,2,3,4].scramble =&gt; [2,1,3,4] [1,2,3,4].scramble =&gt; [3,1,2,4] [1,2,3,4].scramble =&gt; [4,2,3,1] </code></pre> <p>and so on, randomly</p> http://stackoverflow.com/questions/1817219/how-do-i-install-ruby-on-mac-leopard 2 How do I install Ruby on Mac Leopard? Ken 2009-11-30T00:03:16Z 2009-11-30T06:17:12Z <p>Hi, </p> <p>Can anyone please give directions on how to install ruby 1.9 I tried installation directions given all over the web. Can't get it to work. Please kindly give step by step direction. I tried using macports but everytime I type in ruby -v it gives me 1.8.6. </p> <p>Thanks</p> <p>Ken</p> http://stackoverflow.com/questions/1812225/what-makes-ruby-an-elegant-language 8 What makes Ruby an Elegant Language? Luke101 2009-11-28T10:50:53Z 2009-11-30T05:33:06Z <p>I have been reading a lot about Ruby the past few days. Every SO post I come across I hear that ruby is an elegant language. Can you guys give an example of why ruby is elegant compared another language? </p> http://stackoverflow.com/questions/1781322/how-do-i-render-all-comments-in-a-rails-view 1 How do I render all Comments in a Rails view? bgadoci 2009-11-23T05:55:13Z 2009-11-30T04:47:17Z <p>I am new to rails so go easy. I have created a blog. I have successfully implemented comments and attached them to each post. Now...I would like to display, in the sidebar, a list of the most recent comments from across all posts. I think there are two things involved here, an update to the comment_controller.rb, and then the call from the actual page. Here is the comments controller code. </p> <pre><code>class CommentsController &lt; ApplicationController def create @post = Post.find(params[:post_id]) @comment = @post.comments.create!(params[:comment]) respond_to do |format| format.html { redirect_to @post} format.js end end end </code></pre> http://stackoverflow.com/questions/1780879/convert-xml-collection-of-pivotal-tracker-stories-to-ruby-hash-object 0 Convert XML collection (of Pivotal Tracker stories) to Ruby hash/object mlambie 2009-11-23T02:51:01Z 2009-11-30T04:01:57Z <p>I have a collection of stories in an XML format. I would like to parse the file and return each story as either hash or Ruby object, so that I can further manipulate the data within a Ruby script.</p> <p>Does <a href="http://nokogiri.org" rel="nofollow">Nokogiri</a> support this, or is there a better tool/library to use?</p> <p>The XML document has the following structure, returned via <a href="http://www.pivotaltracker.com/help/api" rel="nofollow">Pivotal Tracker's web API</a>:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;stories type="array" count="145" total="145"&gt; &lt;story&gt; &lt;id type="integer"&gt;16376&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/16376&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;accepted&lt;/current_state&gt; &lt;description&gt;A description&lt;/description&gt; &lt;name&gt;Receivable index listing will allow selection viewing&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;owned_by&gt;Tony Superman&lt;/owned_by&gt; &lt;created_at type="datetime"&gt;2009/11/04 15:49:43 WST&lt;/created_at&gt; &lt;accepted_at type="datetime"&gt;2009/11/10 11:06:16 WST&lt;/accepted_at&gt; &lt;labels&gt;index ui,receivables&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17427&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17427&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;&lt;/description&gt; &lt;name&gt;Validations in wizards based on direction&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:52:06 WST&lt;/created_at&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17426&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17426&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;Manual payment needs a description field.&lt;/description&gt; &lt;name&gt;Add description to manual payment&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:10:41 WST&lt;/created_at&gt; &lt;labels&gt;payment process&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17636&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17636&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;The SMS and email templates needs to be editable by merchants.&lt;/description&gt; &lt;name&gt;Notifications are editable by the merchant&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/19 16:44:08 WST&lt;/created_at&gt; &lt;/story&gt; &lt;/stories&gt; </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby 33 Hidden features of Ruby squadette 2008-09-15T15:34:28Z 2009-11-30T03:43:20Z <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/1423209/post-file-using-rubys-http-class 0 Post file using ruby's Http class rmbarnes 2009-09-14T18:34:30Z 2009-11-30T02:00:03Z <p>I have been learning to fake posting forms using Ruby's Http class, but now I need to post a file (as in faking a form submission where one of the fields is input type="file"). Anyone know how to do this?</p> <p>NB It's not essential I use the Http class, just that I can post files.</p> http://stackoverflow.com/questions/490396/is-there-a-way-to-query-munin-about-system-performance 0 Is there a way to query munin about system performance? loglibrarian 2009-01-29T03:35:10Z 2009-11-30T01:00:01Z <p>Basically I would just like to run a script that queries munin for certain stats periodically instead of getting alerts or checking a graph page. Some sort of ruby lib for getting perf info would be awesome.</p> http://stackoverflow.com/questions/1817206/how-to-control-encoding-when-posting-through-nethttp 0 How to control encoding when POSTing through Net::HTTP? jerhinesmith 2009-11-29T23:57:28Z 2009-11-30T00:03:54Z <p>I'm trying to create an API wrapper for <a href="http://issuu.com/" rel="nofollow">Issuu</a> using ruby and am running into errors when attempting to POST the data. When trying a simple GET through the browser with all the params in the querystring, I am able to retrieve the expected results; however, when I try to perform the same operation using a POST in code (which the API claims to support), I consistently get an error stating that my api key is in an <code>Invalid Format</code> (which their documentation claims is likely an encoding issue).</p> <p>Anyway, if I want to make POST my values to a specific URL, how would I go about ensuring that everything is encoded in UTF-8? Is this part of the request header? Or do I need to do something specific to my strings first before POSTing the request?</p> http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby 0 Add XML namespace to existing document in ruby Joseph Holsten 2009-03-08T08:04:28Z 2009-11-30T00:00:03Z <p>I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this?</p> <p>Ideally I would like to use REXML for portability, but any common XML library would be okay. An ideal solution would be smart about namespace collisions.</p> <p>I have an xml document which looks like this:</p> <pre><code>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> <p>and add:</p> <pre><code>&lt;Service xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; </code></pre> <p>Yielding something equivalent to:</p> <pre><code>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;Service&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> http://stackoverflow.com/questions/1816953/rails-foxy-fixtures-throwing-unknown-column-error 0 Rails Foxy Fixtures throwing unknown column error Garrett 2009-11-29T22:07:25Z 2009-11-29T22:07:25Z <p>I am using dynamic fixtures and whenever I run my tests I am getting an error that thinks my association is a column, when it should be <code>owner_id</code>:</p> <pre><code>ActiveRecord::StatementInvalid: Mysql::Error: Unknown column 'owner' in 'field list': INSERT INTO `companies` (`custom_host`, `name`, `created_at`, `updated_at`, `api_key`, `id`, `subdomain`, `owner`) VALUES ('testerapp.com', 'Some Company', '2009-11-29 21:39:29', '2009-11-29 21:39:29', 'ae2b1fca515949e5d54fb22b8ed95575', 467557389, 'some_company', 'garrett') </code></pre> <p>In my <code>companies.yml</code> file I have this:</p> <pre><code>some_company: name: Some Company subdomain: some_company custom_host: testerapp.com api_key: &lt;%= "testing".to_md5 %&gt; owner: garrett </code></pre> <p>And <code>users.yml</code>:</p> <pre><code>garrett: company: some_company login: garrett email: email@me.com ... locale: en role_name: owner </code></pre> <p>Here are my models as well:</p> <pre><code>class Company &lt; ActiveRecord::Base has_one :owner, :class_name =&gt; "User" has_many :users validates_associated :owner end class User &lt; ActiveRecord::Base belongs_to :company end </code></pre> <p>Could my problem be because I am associating <code>User</code> twice within <code>Company</code>? This is making testing really hard right now, and I was hoping someone could shine some light as to why it isn't reading my associations correctly.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1814341/ruby-without-rails 1 Ruby without Rails Nathan Campos 2009-11-29T01:21:49Z 2009-11-29T20:42:17Z <p>I've already developed some simple applications in Rails(just to test) without any knowleadge of Ruby, but now I want to change my life, I'm going to start learning Ruby(and never learn Rails for some personal reasons) and focus only on it, but before doing this I need tp know some things:</p> <ul> <li>How can I build GUI applications with it? <ul> <li>It's possible to use GTK with it?</li> <li>Where to download?</li> </ul></li> <li>Pros and cons of Ruby compared to Perl amd Python?</li> <li>Pros and cons compared to C# and other .Net languages?</li> <li>How is the market of Ruby(without Rails) today?</li> <li>Where to be updated with the lastest news(podcasts and blogs) of the Ruby world?</li> </ul> <p>This is all <strong>;)</strong></p> http://stackoverflow.com/questions/1208098/rubygame-osx-hello-world-crashes-at-startup 0 Rubygame + OSX hello world crashes at startup taw 2009-07-30T17:29:03Z 2009-11-29T20:26:54Z <p>I have this crash-at-startup problem with rubygame and OSX.</p> <p>Anybody knows what might be causing it, and how to fix it?</p> <p>Versions: OSX 10.5.7, ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin9], rubygame 2.5.3 installed from a rubygem, most software installed with MacPorts (up to date).</p> <p>Different versions of ruby and rubygame seem to have identical problem. Googling doesn't help. Pygame works on the same machine, so SDL as such should be fine. Any ideas? Here's the stack trace.</p> <p>$ ruby -e 'require "rubygems"; require "rubygame"; Rubygame.init' 2009-07-30 18:13:20.416 ruby[66473:10b] <strong>* _NSAutoreleaseNoPool(): Object 0x116ebb0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c309 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.418 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116f030 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c341 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.418 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x116f6e0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c37b 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.419 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116f340 of class NSCFDictionary autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c3de 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.420 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceb84 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.421 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116fa90 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95967b6a 0x9493c48d 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.422 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceb94 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.423 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116f6f0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95967b6a 0x9493c48d 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.423 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.424 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116aac0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95967b6a 0x9493c48d 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.425 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05cebb4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.426 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x116aac0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95967b6a 0x9493c48d 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.427 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.428 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0xa05cebb4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.428 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.429 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0xa05cebb4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.430 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.430 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.431 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa05ceba4 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c444 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.432 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x115bce0 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9493c55d 0x95e818b8 0x95e80239 0x95e906d6 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.434 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x11703f0 of class __NSFontTypefaceInfo autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9495240e 0x94952280 0x94951b27 0x94999773 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.435 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x1171450 of class NSAffineTransform autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x94952916 0x95e818b8 0x95e80239 0x95e906d6 0x94951d3a 0x94999773 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.436 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x1171900 of class NSFont autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x94952842 0x94951d3a 0x94999773 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.436 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x1171a40 of class NSFont autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x94951e07 0x94999773 0x94998753 0x94996959 0x9499669e 0x9499604d 0x94995b8c 0x94993b88 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.438 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x11726b0 of class NSCFArray autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9499f9fa 0x9499f91b 0x9499f85b 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.439 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x11735f0 of class NSCFSet autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x90135eb0 0x9499fb66 0x9499f91b 0x9499f85b 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.440 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x11737d0 of class NSCFArray autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9013601f 0x9499fb66 0x9499f91b 0x9499f85b 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.441 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x11738b0 of class NSCFArray autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x90135118 0x9499f961 0x9499f85b 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.441 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x1171a40 of class NSFont autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x94951a41 0x9499f882 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.443 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0xa001ce20 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95983c08 0x94965d1c 0x949a0b2d 0x949a056e 0x949a03e6 0x949a0317 0x949a01b7 0x9499f8a7 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.444 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0xa00159a0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x95983c08 0x94965d1c 0x949a0c36 0x949a0590 0x949a03e6 0x949a0317 0x949a01b7 0x9499f8a7 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.444 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x114c300 of class NSCFNumber autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x949a0670 0x949a03e6 0x949a0317 0x949a01b7 0x9499f8a7 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.445 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x1175390 of class NSCalibratedWhiteColor autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x94aafba3 0x94aafaa3 0x94aaf17b 0x94aaed97 0x949a0294 0x9499f8a7 0x9499f648 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.446 ruby[66473:10b] *</strong> <em>NSAutoreleaseNoPool(): Object 0x1175630 of class NSCFArray autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9499f9fa 0x94ab2773 0x94ab255b 0x94ab0f6a 0x94ab0d1d 0x9499f661 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.447 ruby[66473:10b] <strong></em> _NSAutoreleaseNoPool(): Object 0x11756f0 of class NSCFSet autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x90135eb0 0x9499fb66 0x94ab2773 0x94ab255b 0x94ab0f6a 0x94ab0d1d 0x9499f661 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.447 ruby[66473:10b] *</strong> _NSAutoreleaseNoPool(): Object 0x1175650 of class NSCFArray autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9013601f 0x9499fb66 0x94ab2773 0x94ab255b 0x94ab0f6a 0x94ab0d1d 0x9499f661 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a) 2009-07-30 18:13:20.448 ruby[66473:10b] *** _NSAutoreleaseNoPool(): Object 0x1175b20 of class NSCFDictionary autoreleased with no pool in place - just leaking Stack: (0x95a58f0f 0x95965442 0x9013c27e 0x94ab5606 0x94ab53fd 0x94ab0d92 0x9499f661 0x94993bee 0x6546a6 0x64a65b 0x61e670 0x61e6a7 0xa2e89 0x10b972 0x10c57c 0x109eb7 0x119d27 0x119d66 0x119d9a)</p> http://stackoverflow.com/questions/1816338/guess-name-from-email 0 Guess name from email Ralf 2009-11-29T18:35:37Z 2009-11-29T20:00:00Z <p>Is there a standard or simple way to guess a name from an email address, similar to what gmail does?</p> <p>For example, "john.smith@whoever.com" should give "John Smith".</p> <p>Doing this shouldn't be too hard (strip domain name, remove special characters, capitalize, etc), but I'm sure there should be existing code for this.</p> <p>Code in Ruby would be preferred, but any other language would be fine.</p> http://stackoverflow.com/questions/1814873/mimic-tabs-in-textile-and-html-in-ruby 0 Mimic Tabs in Textile and HTML (in Ruby)? viatropos 2009-11-29T07:01:06Z 2009-11-29T19:14:36Z <p>How do you mimic tabs in HTML? Specifically, I would like to be able to use tabs to align things in a textile document, and convert those to "non-breaking spaces" and whatnot in HTML, using RedCloth in Ruby. Is this possible? Is there an alternative working method?</p> http://stackoverflow.com/questions/1816040/simpledb-vs-tokyo-cabinet 1 SimpleDB vs Tokyo Cabinet Coder 42 2009-11-29T16:54:00Z 2009-11-29T19:10:46Z <p>Has anybody compared SimpleDB and Tokyo Cabinet for performance and scalability? I'm coding my project against SimpleDB at the moment and considering benchmarking TC, be nice if somebody had already done it and could tell me whether it's worth testing my specific storage and searching operations. If not I'll run some direct comparisons and blog the results.</p> <p>Project is using Ubuntu 9.1 &amp; Ruby 1.8.7 on an Amazon EC2 small instance (for now).</p> http://stackoverflow.com/questions/1805761/check-if-url-is-valid-ruby 0 check if url is valid ruby Luca Romagnoli 2009-11-26T21:35:12Z 2009-11-29T18:30:53Z <p>How can i check if a variable is a valid url? e.g.</p> <p><a href="http://hello.it" rel="nofollow">http://hello.it</a> ok http:||bra.ziz, no</p> <p>and if this is a valid url how can i check if this is relative to a image file?</p> <p>thanks</p> http://stackoverflow.com/questions/1815978/help-with-multidimensional-arrays-in-ruby 0 Help with multidimensional arrays in Ruby unknown 2009-11-29T16:31:04Z 2009-11-29T16:44:32Z <p>I have this code to split a string into groups of 3 bytes:</p> <pre><code>str="hello" ix=0, iy=0 bytes=[] tby=[] str.each_byte do |c| if iy==3 iy=0 bytes[ix]=[] tby.each_index do |i| bytes[ix][i]=tby[i] end ix+=1 end tby[iy]=c iy+=1 end puts bytes </code></pre> <p>I've based it on this example: <a href="http://www.ruby-forum.com/topic/75570" rel="nofollow">http://www.ruby-forum.com/topic/75570</a></p> <p>However I'm getting type errors from it. Thanks.</p> http://stackoverflow.com/questions/1639646/any-full-ruby-stack-ami-on-ec2 0 Any Full "Ruby Stack" AMI on EC2 ? nexneo 2009-10-28T19:48:34Z 2009-11-29T16:39:57Z <p>What is best available EC2 AMI that have satisfy following must have?</p> <ul> <li>Ruby Stack Pre Installed</li> <li>MySql Installed and configured with Ruby</li> <li>Monit Installed</li> <li>Nginx</li> <li>Secure SSH access</li> </ul> <p>Please let me know AMI you are recommending you have used or not? </p> <p>Amazon lacks proper review system for AMI unlike product/book previews.</p> http://stackoverflow.com/questions/721297/message-queues-in-ruby-on-rails 6 Message Queues in Ruby on Rails railsninja 2009-04-06T12:52:49Z 2009-11-29T15:56:07Z <p>What message queues are people using for their Rails apps and what was the driving force behind the decision to choose it. Does the latest Twitter publicity over their in house queue Starling falling down affect any existing design decisions.</p> <p>I am working on an app that will need a message queue to process some background tasks, I haven't done much of this, and most of the stuff I have seen in the past has been about Starling and Workling, and to be honest the application is not very big and this solution would probably suffice, but I'd love to get experience integrating the best solution possible as I'm sure I will integrate one into a bigger app at some point.</p> <p>What message queues would you suggest for a Rails app???</p> <p>EDIT: Thanks for the suggestions, I'm going to look at a few of them this weekend.</p> <p>EDIT Again: I've had a look around and a little overwhelmed for choice. I am however going to go about integrating RabbitMQ with Workling into the app I am building, then if I ever need some knowledge about a fast queue then I will have this and know whether or not it fits my needs.</p> http://stackoverflow.com/questions/1814567/new-imac-new-rails-environment-dropbox-permission-problem -1 New iMac - New Rails Environment - Dropbox - Permission Problem... bgadoci 2009-11-29T03:39:36Z 2009-11-29T14:35:02Z <p>Ok, I just bought the new 27 inch iMac and I am trying get everything set up. I am new to rails and have been developing on my MacBook Pro and seem to be having some trouble sharing my applications. I use dropbox which allowed me to easily access the new files from my new iMac and therefore my rails applications but after installing rails, when I try to start the server for my app, I get:</p> <p>-bash: script/server: Permission denied. </p> <p>I am assuming this has to do with the app being protected but not sure what to do here. </p> http://stackoverflow.com/questions/1815276/how-do-you-remove-the-documentation-installed-by-gem-install 0 How do you remove the documentation installed by gem install? Bloudermilk 2009-11-29T11:21:55Z 2009-11-29T11:45:34Z <p>I know it's possible to install a gem without the documentation, but unfortunately, I didn't for the first three months I used ruby. In that time, I managed to install a significant amount of gems, but not once since I started using ruby have I used the documentation on my computer. I always look to docs on the internet.</p> <p>What is the best way to safely remove the documentation from my computer? Also, is there a way to configure ruby to not install documentation by default?</p> http://stackoverflow.com/questions/1814819/fastest-one-liner-way-to-print-xml-nodes-xpath-in-ruby 0 Fastest/One-liner way to print XML node's XPath in Ruby? viatropos 2009-11-29T06:19:52Z 2009-11-29T09:43:46Z <p>What's the fastest/one-liner way to print the current nodes xpath, or just "path/to/node", in Ruby with Nokogiri?</p> <p>So this:</p> <p><pre><code> <code>&lt;nodeA&gt; &lt;nodeB&gt; &lt;nodeC/&gt; &lt;/nodeB&gt; &lt;/nodeA&gt;</code> </code></pre></p> <p>to this (say we've gone down to nodeC by processing xml.children.each, etc...):</p> <pre>"nodeA/nodeB/nodeC"</pre>