Search Results

0
votes
1answer
191 views

Is there a ‘standard’ read/write lock implementation for ruby?

Does anyone know of an existing ruby implementation of a read/write lock - http://en.wikipedia.org/wiki/Readers-writer_lo …
0
votes
3answers
114 views

What’s a nice clean way to use an options hash with defaults values as a parameter in ruby

Let's say I want a method which will be called like this: tiger = create_tiger( :num_stripes => 12, :max_speed => 43.2 ) tiger.num_stripes # will be 12 whe …
2
votes
4answers
261 views

Is there an ORM-like wrapper for memcached

I'm looking for a ruby gem (or rails plugin) which abstracts the details of memcached in the same way that ActiveRecord abstracts the details of SQL. I am NOT looking for something …
3
votes
1answer
224 views

unpacking/freezing gems into a non-rails ruby app

I'm writing a non-Rails ruby application (gasp!) and would like to be able to include all the gem dependencies which the application requires in a vendor subdirectory. This would be similar to how …
2
votes
1answer
70 views

How to add convenience class methods to a Singleton class in ruby

Let's say I have a singleton class like this: class Settings include Singleton def timeout # lazy-load timeout from config file, or whatever end end Now …
0
votes
0answers
7 views

SOAP calls using EventMachine

Is there any way to make non-blocking SOAP requests within EventMachine? I'm creating a ruby application which interacts with the google adwords api (which is SOAP based), using the adword …
1
vote

Unable to rescue from “Lost connection to MySQL server” error

From your comment it looks like what's happening is that a Mysql::Error exception is being thrown, but then caught by ActiveRecord which then throws an ActiveRecord::StatementInvalid exception (whi …
1
vote

What are alternatives to find_by_sql for computationaly-heavy queries?

You might want to look at using DataMapper or Sequel for your ORM if you're finding that …
2
votes

Ruby date conversion

require 'tzinfo' input_time = Time.parse('Fri Jun 26 23:05:00 -0400 2009') input_time.utc puts "input_time = #{input_time}" est_tz = TZInfo::Timezone.get('EST') time_in_est = est_tz.utc_ …
1
vote

what are the advantages of mocha over rspec’s built in mocking framework?

One specific feature I really like is being able to stub out all instances of a class. A lot of times I do something like the following with rspec mocks: stub_car = mock(Car) stub_c …
0
votes

xml diff in ruby?

I've wanted similar functionality myself in the past (mainly for unit testing xml generation) but I've never found a good solution. I'd assume at some point you're going to want to compare two DOMs …
0
votes

xml diff in ruby?

checking out the answers to this question may well help …