active questions tagged ruby - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:37:24Zhttp://stackoverflow.com/feeds/tag/rubyhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818597/testing-and-establishconnection1testing and establish_connectionAlexey Poimtsev2009-11-30T08:54:49Z2009-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-method1question about overriding initialize methodRichard Huang2009-11-30T08:27:07Z2009-11-30T09:48:37Z
<p>I encountered a strange question about override initialize message of BigDecimal.</p>
<pre><code>class Test1 < String
def initialize(a, b)
puts a
puts b
end
end
require 'bigdecimal'
class Test2 < BigDecimal
def initialize(a, b)
puts a
puts b
end
end
>> Test1.new('a', 'b')
a
b
>> 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-model0Why does mysqldump need to be fully pathed when called from a controller or model?Kris2009-11-26T13:41:05Z2009-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} > #{target_file}"
# Only works in a Rake task
system "mysqldump -u root #{w.database_name} > #{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-ruby0How do I set Windows-related file attributes in ruby?Andrew Grimm2009-11-30T07:14:18Z2009-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-ruby1Support for IMAP IDLE in rubyAsaxena2009-07-02T19:01:35Z2009-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-working0DataMapper has n through Resource DELETE (Remove from association) not workingludicco2009-11-29T14:35:51Z2009-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 => Resource
end
class Post
include DataMapper::Resource
property :id, Serial
property :title, String
property :body, Text
has n :users, :through => Resource
end
</code></pre>
<p>So once I have a new post like:</p>
<pre><code>Post.new(:title => "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 << Post.first #why do I have to save this as oppose from AR?
(User.first.posts << 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 << 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-conditions0DataMapper has n with conditionsludicco2009-11-25T00:11:00Z2009-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 => false
property :screen_name, String, :nullable => false, :unique => true
property :email, String, :nullable => false, :unique => true, :format => :email_address
property :password, BCryptHash, :nullable => false
property :developer, Boolean, :default => false
#The user just gets apps if developer
has n :apps #,:conditions => "developer = 't'"
end
class App
include DataMapper::Resource
property :id, Serial
property :name, String, :nullable => 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-ruby4How to randomly sort (scramble) an array in Ruby?Daniel Cukier2009-11-29T18:45:59Z2009-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 => [2,1,3,4]
[1,2,3,4].scramble => [3,1,2,4]
[1,2,3,4].scramble => [4,2,3,1]
</code></pre>
<p>and so on, randomly</p>
http://stackoverflow.com/questions/1817219/how-do-i-install-ruby-on-mac-leopard2How do I install Ruby on Mac Leopard?Ken2009-11-30T00:03:16Z2009-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-language8What makes Ruby an Elegant Language?Luke1012009-11-28T10:50:53Z2009-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-view1How do I render all Comments in a Rails view?bgadoci2009-11-23T05:55:13Z2009-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 < 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-object0Convert XML collection (of Pivotal Tracker stories) to Ruby hash/objectmlambie2009-11-23T02:51:01Z2009-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><?xml version="1.0" encoding="UTF-8"?>
<stories type="array" count="145" total="145">
<story>
<id type="integer">16376</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/16376</url>
<estimate type="integer">2</estimate>
<current_state>accepted</current_state>
<description>A description</description>
<name>Receivable index listing will allow selection viewing</name>
<requested_by>Tony Superman</requested_by>
<owned_by>Tony Superman</owned_by>
<created_at type="datetime">2009/11/04 15:49:43 WST</created_at>
<accepted_at type="datetime">2009/11/10 11:06:16 WST</accepted_at>
<labels>index ui,receivables</labels>
</story>
<story>
<id type="integer">17427</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17427</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description></description>
<name>Validations in wizards based on direction</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/17 15:52:06 WST</created_at>
</story>
<story>
<id type="integer">17426</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17426</url>
<estimate type="integer">2</estimate>
<current_state>unscheduled</current_state>
<description>Manual payment needs a description field.</description>
<name>Add description to manual payment</name>
<requested_by>Tony Superman</requested_by>
<created_at type="datetime">2009/11/17 15:10:41 WST</created_at>
<labels>payment process</labels>
</story>
<story>
<id type="integer">17636</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17636</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description>The SMS and email templates needs to be editable by merchants.</description>
<name>Notifications are editable by the merchant</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/19 16:44:08 WST</created_at>
</story>
</stories>
</code></pre>
http://stackoverflow.com/questions/63998/hidden-features-of-ruby33Hidden features of Rubysquadette2008-09-15T15:34:28Z2009-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-class0Post file using ruby's Http classrmbarnes2009-09-14T18:34:30Z2009-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-performance0Is there a way to query munin about system performance?loglibrarian2009-01-29T03:35:10Z2009-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-nethttp0How to control encoding when POSTing through Net::HTTP?jerhinesmith2009-11-29T23:57:28Z2009-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-ruby0Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:04:28Z2009-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><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>and add:</p>
<pre><code><Service
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</code></pre>
<p>Yielding something equivalent to:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service>
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
http://stackoverflow.com/questions/1816953/rails-foxy-fixtures-throwing-unknown-column-error0Rails Foxy Fixtures throwing unknown column errorGarrett2009-11-29T22:07:25Z2009-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: <%= "testing".to_md5 %>
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 < ActiveRecord::Base
has_one :owner, :class_name => "User"
has_many :users
validates_associated :owner
end
class User < 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-rails1Ruby without RailsNathan Campos2009-11-29T01:21:49Z2009-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-startup0Rubygame + OSX hello world crashes at startuptaw2009-07-30T17:29:03Z2009-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-email0Guess name from emailRalf2009-11-29T18:35:37Z2009-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-ruby0Mimic Tabs in Textile and HTML (in Ruby)?viatropos2009-11-29T07:01:06Z2009-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-cabinet1SimpleDB vs Tokyo CabinetCoder 422009-11-29T16:54:00Z2009-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 & Ruby 1.8.7 on an Amazon EC2 small instance (for now).</p>
http://stackoverflow.com/questions/1805761/check-if-url-is-valid-ruby0check if url is valid rubyLuca Romagnoli2009-11-26T21:35:12Z2009-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-ruby0Help with multidimensional arrays in Rubyunknown2009-11-29T16:31:04Z2009-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-ec20Any Full "Ruby Stack" AMI on EC2 ? nexneo2009-10-28T19:48:34Z2009-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-rails6Message Queues in Ruby on Railsrailsninja2009-04-06T12:52:49Z2009-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-1New iMac - New Rails Environment - Dropbox - Permission Problem...bgadoci2009-11-29T03:39:36Z2009-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-install0How do you remove the documentation installed by gem install?Bloudermilk2009-11-29T11:21:55Z2009-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-ruby0Fastest/One-liner way to print XML node's XPath in Ruby?viatropos2009-11-29T06:19:52Z2009-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><nodeA>
<nodeB>
<nodeC/>
</nodeB>
</nodeA></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>