Tagged Questions

For issues relating to developing in Ruby, version 1.9.

learn more… | top users | synonyms

6
votes
8answers
353 views

Rails not using correct version of Ruby

New information This is what happens with rails console: Loading development environment (Rails 3.1.1) ruby-1.9.2-p290 :001 > RUBY_VERSION => "1.8.7" There's something really weird going ...
3
votes
1answer
251 views

Sinatra app with sprockets not working on Heroku

I have a little Sinatra app including this module: module Sprockets module Helpers def asset_path(source) "/assets/#{Environment.instance.find_asset(source).digest_path}" end def ...
2
votes
3answers
74 views

Converting a hash into a nested hash

Given a hash that has an array for each key like { [:a, :b, :c] => 1, [:a, :b, :d] => 2, [:a, :e] => 3, [:f] => 4, } what is the best way to convert it into a nested ...
1
vote
2answers
39 views

Vim, Tabular and Ruby 1.9 Hashes

Assuming I have the following options Hash as an argument to a method in Ruby 1.9.x: my_method :arg1, some_option: "value 1" some_other_option:true option_three: 123 Using the Tabular VIM ...
1
vote
2answers
46 views

How can I add an alias to Ruby 1.9's Enocding.aliases?

Wanted to add an alias for one of the charsets that PayPal may use for its IPN (Instant Payment Notification). This is silently ignored: Encoding.aliases["x-mac-greek"] = "macGreek" This doesn't ...
1
vote
1answer
140 views

Missing HTTP status in the response

I have a restful api built on top of a rails 3 app, i am raising a custom exception error whenever an entity is not found like below @line = @current_account.lines.find(:first, :conditions ...
1
vote
2answers
98 views

Sorting a Hash by integer value of hash key in Ruby 1.9

Given the following hash: {"7"=>"Ada (gnat-4.3.2)", "13"=>"Assembler (nasm-2.07)", "45"=>"Assembler (gcc-4.3.4)", "104"=>"AWK (gawk) (gawk-3.1.6)", "105"=>"AWK (mawk) (mawk-1.3.3)", ...
1
vote
1answer
46 views

What's the state of Ruby 1.9 for production right now? Is it usable with Rails 3? [closed]

What's the current state of Ruby 1.9 for Rails 3 on production? Is it usable? (the last thread I found on this was of Jun 16 '09, so and update would be nice)
0
votes
1answer
16 views

Data casting error when reading from a file in Ruby

I am trying to import data into rails (3.1) and I have created this rake task to parse a tab delimited text file (generated by Excel on Mac), the file has standard Mac OS X line endings. desc "Import ...
0
votes
1answer
57 views

How to access Sinatra Session from a module

I am developing an application with Ruby 1.9.2 and Sinatra 1.3. I have a helper module that needs to access session data. Here is a snippet of my module require 'sinatra' module SessionHelper ...
0
votes
2answers
41 views

Position of the method in source file

When I try to extract the position of a method in the source code, I can do: class Object def source_position puts caller.first end end so that when I use it in a chain that ...
0
votes
1answer
133 views

Ruby: How to pass options to test::unit in 1.9.3

I want to run a test file: # xxx.rb require 'test/unit'; class XTest < Test::Unit::TestCase; def test_xxx; end; end Until ruby 1.9.2 ruby -Itest -e "require './xxx.rb'" - -v did the job, with ...
0
votes
1answer
77 views

public_filename method is undefined for attachment_fu in ruby 1.9

I'm upgrading a RoR app that I inherited, from 1.8.7/2.3.? to 1.9/3.0.9 The app uses attachemnt_fu to allow users to upload photos, but when I try to display a photo on the home page, I get : ...
0
votes
0answers
151 views

Kill a process spawned by Open3.popen2

How do I terminate a process started by Ruby 1.9's Open3.popen2? On Linux, Process.kill wait_thr.pid only terminates the wrapping shell process ... leaving the actual process running. The below ...
0
votes
3answers
53 views

Capturing events on a web page

I am running a web page from a server using webrick. How can I capture an event from the web browser? I do not want to do it through JavaScript, but I want to get a response through webrick, and ...