For issues relating to developing in Ruby, version 1.8.

learn more… | top users | synonyms

0
votes
0answers
28 views

resque-web with rack 1.4.5 (unicorn + nginx)

Recently installed resque-web on Debian 6 (with ruby 1.8) using sudo gem install resque sudo gem install unicorn Everything works fine until I restart the server (which is also running Redmine + ...
0
votes
2answers
45 views

Using instance_exec and converting a method to a Proc

I can take a block of code, instance_exec it, and get the proper result. I would like to take a method off a different object and call one of it's methods in my scope. When I take a method from a ...
1
vote
4answers
77 views

Empty range between strings representing numbers

Here are two range values. ('1'..'10').to_a => ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"] but, ('2'..'10').to_a => [] Why does the second one return an empty array in ruby ...
2
votes
1answer
669 views

Why begin/rescue/else behaves differently on 1.9.2 and 1.8.7

I am working with the method mm. In ruby 1.9.2 it behaves weird, instead of the expected result 1.9.2=>10 I am getting ELSE ** 1.9.2=>8 Any idea of what is going on? class A def mm(data) ...
0
votes
1answer
45 views

Why do I get “Undefined method `take' for Array” in Ruby 1.8.7?

I'm not sure why I get this error, since it does seem to be an array in Ruby 1.8.7. Here is the relevant code: rows.each_with_index do |row, index| if (index == 0) then log "Found the ...
99
votes
10answers
28k views

Ruby: require vs require_relative - best practice to workaround running in both Ruby <1.9.2 and >=1.9.2

What is the best practice if I want to require a relative file in Ruby and I want it to work in both 1.8.x and >=1.9.2? I see a few options: just do $LOAD_PATH << '.' and forget everything do ...
1
vote
2answers
89 views

Which one is a Ruby deprecated proc?

In the book Programming Ruby: The Pragmatic Programmers Guide by Dave Thomas with Chad Fowler and Andy Hunt, regarding the creation of Procs there is a footnote that states: "There’s actually a ...
0
votes
0answers
133 views

rake gems:install failing in rails 2 app for mystifying reasons

I am trying to get a rails 2.3.12 project running in my local development environment, but I cannot seem to install the needed gems. Here are the ruby/rails versions I am using: $ rvm list rvm rubies ...
0
votes
1answer
126 views

NoMethodError (undefined method `tempfile'… in Rails 2.3.1

I have downgraded from Rails 3.2.11 to Rails 2.3.11 and I am having trouble accessing the tempfile when my csv file is being uploaded to the server. It breaks on the code when I call tmppath = ...
6
votes
2answers
998 views

How to get character's Unicode in Ruby 1.8.7?

To get character's Unicode in Ruby 1.9.2, I use ord: "я".ord # => 1103 (It's a Russian letter) How could I get the Unicode in Ruby 1.8.7 ?
0
votes
0answers
51 views

ActiveRecord::AssociationTypeMismatch ruby 1.8 without using spork

I have models specs, controllers spec and request spec. When I run: rspec spec models spec are run first, then request and then when controller specs are run the specs for the first ...
1
vote
2answers
1k views

What are the major differences between Ruby 1.8.6 and 1.9.1? [duplicate]

Possible Duplicate: What is the difference between Ruby 1.8 and Ruby 1.9 I have found some differences in interpretation of global and local variables. Can anyone point me to list of major ...
0
votes
5answers
81 views

Combining arrays without product method

I have two arrays a = [1,2,3,4] b = [a,b,c,d,e,f] that I need to combine to create: c = [[1,a],[1,b],[1,c],[1,d],[1,e],[1,f],[2,a],[2,b],...] I would use the product method with Ruby version ...
0
votes
1answer
52 views

Escape ruby string interpolation syntax [duplicate]

Possible Duplicate: How do I escape #{ from string interpolation If I have a string like this: "interpolated: #{1}, verbatim: #{dont_interpolate}" How do I escape only the second #{} ...
0
votes
0answers
81 views

Vagrant Chef configuration for legacy rails app

I am trying to configure Vagrant and Chef Solo to create an environment for running a legacy Rails app (Rails 2.0, Ruby 1.8.6). I'm having a hard time finding the right cookbooks to configure this ...
0
votes
1answer
154 views

Fog getting started in ruby 1.8: “uninitialized constant Fog”, works in 1.9

I'm trying the getting started guide on fog.io and this is working fine in ruby-1.9.3-p194, but not in ruby-1.8.7-p370, please see error below: ecoologic@lerikaround:~/fog$ ruby fog.rb ./fog.rb:4: ...
7
votes
1answer
98 views

Why this code is not compiling on ruby 1.9 but is on ruby 1.8?

Sorry for the title, I don't know how this syntax is called. For instance: ary = [ [11, [1]], [22, [2, 2]], [33, [3, 3, 3]] ] # want to get [ [11, 1], [22, 2], [33, 3] ] Ruby 1.8 ary.map{|x, ...
1
vote
0answers
102 views

Differences between Ruby 1.8 vs 1.9 in list's element comparison

The two Ruby versions are: 1.8.7 (which the school uses) vs. 1.9.3 (current version, that I have on my system). Just curious on what is different in 1.9.3 that makes the following not work properly. ...
1
vote
1answer
324 views

Installing gems in Mac OS X pre-installed ruby 1.8.7

Macs seem to all come with ruby 1.8.7 pre-installed. That's fine for my purposes, but when I install gems with either gem install gem-name or sudo gem install gem-name, I have to explicitly add the ...
68
votes
3answers
25k views

What is the difference between Ruby 1.8 and Ruby 1.9

I'm not clear on the differences between the "current" version of Ruby (1.8) and the "new" version (1.9). Is there an "easy" or a "simple" explanation of the differences and why it is so different?
0
votes
2answers
59 views

How to Call/Require Ruby 1.8 Lib from Ruby 1.9

I'm using a Ruby 1.8 lib kakasi-ruby, but it seems that it can only be compiled against Ruby 1.8 (https://github.com/hogelog/kakasi-ruby/issues/2) My application is Ruby 1.9.3, so I need to call ...
3
votes
3answers
283 views

Difference in `Array#to_s` in Ruby 1.8 and Ruby 1.9 [duplicate]

Possible Duplicate: Ruby 1.9 Array.to_s behaves differently? I wonder if anyone can tell me what changed between Ruby 1.8.7 and Ruby 1.9.3. I have an example listed below that behaves ...
2
votes
1answer
91 views

How do you invoke ruby module methods via reflection?

I'd like to get the following to work. The idea is that I can add methods to Routes and if they exist I can use them later. I'm using Ruby 1.8. module Routes def home #stuff end def work ...
4
votes
1answer
191 views

How to unwind (multi-level return) the stack without catch/try/raise?

I would like to unwind the stack to an arbitrary level when catch/try is not available (i.e., the code to which I'm unwinding is out of my control). Is this possible? For example, in testing, I would ...
1
vote
2answers
78 views

How to match regexp starting from specific character index in Ruby 1.8?

In Ruby 1.9 I would use String#match(regexp,start_index). I'm sure there must be a (computationally efficient) equivalent in Ruby 1.8, but I can't find it. Do you know what it is?
4
votes
2answers
1k views

Supporting Ruby 1.9's hash syntax in Ruby 1.8

I'm writing a Ruby gem using the {key: 'value'} syntax for hashes throughout my code. My tests all pass in 1.9.x, but I (understandably) get syntax error, unexpected ':', expecting ')' in 1.8.7. Is ...
0
votes
2answers
172 views

How to count duplicates hash itens in Ruby 1.8.5 ( Sketchup Ruby API )

I need to count the duplicates, they need to be 100% identical to increase my count, but I can not use a nothing out of Ruby 1.8.5, this code will run inside a plugin in google sketchup Google ...
10
votes
1answer
11k views

Ruby require 'file' and relative location

So I'm writing some rspec tests and I'm embarrassed at my lack of Ruby understanding. I have a file structure that looks like the following: GUI_Tests/Tests/test_spec.rb GUI_Tests/windows_gui.rb ...
1
vote
2answers
120 views

missing '=>' in ruby irb results

I'm reading an eBook for EXTREME beginners in Ruby. It's walking me through VERY step-by-step, but I want to make sure I'm doing it right before I move on. My first problem was when I typed irb. ...
1
vote
3answers
139 views

Right way to extract multiple values from string using regex in ruby 1.8

I'm relatively new to ruby and I'm trying to figure out the "ruby" way of extracting multiple values from a string, based on grouping in regexes. I'm using ruby 1.8 (so I don't think I have named ...
0
votes
1answer
630 views

Parse Date String in Ruby

I am new to Ruby. I have a String which represents a date like: 20120119. It is in the format YYYYMMDD. I want to be able to parse this string into a Ruby internal object that represents Date so that ...
0
votes
1answer
199 views

How do I move from SOAP:RPC:Driver to Savon

As discussed elsewhere the SOAP::RPC::Driver which was available in Ruby 1.8 has been removed in Ruby 1.9. People suggested using the Savon gem, but I can't find any tutorials on how to convert ...
0
votes
2answers
188 views

Modifying the returned value of find_by_sql

So I am pulling my hair over this issue / gotcha. Basically I used find_by_sql to fetch data from my database. I did this because the query has lots of columns and table joins and I think using ...
0
votes
1answer
226 views

Accessing FB Graph API using Ruby 1.8 and Rails

I'm adding Facebook functionality on to a site running Ruby 1.8.6 and rails 1.2.3. Are there any gems that will let me use facebook's graph api with these versions?
1
vote
1answer
229 views

Rails inserting invalid datetimes in created_at and updated_at

I am using Rails 3.2.2 on Ruby 1.8.7 with mysql2 0.3.11 (against a mysql 14.14 server), and sometimes a created_at or updated_at value will be an invalid DateTime, and cause my app to throw an ...
0
votes
0answers
28 views

How do I install BB-Ruby in Ruby 1.8?

I tried running sudo gem install bb-ruby, but it gave me this output: PostInstall.txt Successfully installed bb-ruby-0.9.4 1 gem installed Installing ri documentation for bb-ruby-0.9.4... Installing ...
0
votes
2answers
79 views

Ruby: “NoMethodError” after updating to ruby 1.9

I know this question may seem very specific, but I'm trying to update some scripts to run on ruby 1.9 and have run into this very similar error on more than one occasion. I'm trying to run this code ...
0
votes
2answers
348 views

Why does this named_scope create a NoMethodError?

I don't see where this code is creating this NoMethodFound error, and would really like any helpful suggestions. Here's the error message: NoMethodError in UploadsController#create The relevant ...
0
votes
1answer
496 views

Ruby unsupported protocol (OpenSSL::SSL::SSLError) on Debian/Linux

How to fix this error that happens on Debian Linux using ssl commands with ruby ? /usr/lib/ruby/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 state=unknown state: unsupported ...
1
vote
0answers
978 views

RVM and Passenger with two Ruby versions

How can I use Passenger, RVM and Apache with 1.9 and 1.8(ree) ruby version? I need it in production env. I try this: RVM PASSENGER but REE is only working. 1.9 say this: The given ruby ...
0
votes
4answers
162 views

Can I install Ruby v1.8.7 in System(not in rvm) after installing ruby in RVM 1.9.3

Actually, I have to work on Chef which use system default ruby v 1.8.7. and with rvm installed ruby my Chef is not wroking. So , To make my chef server installation. I required to have ruby1.8.7 into ...
3
votes
2answers
339 views

Stopping a Distributed Ruby Service

I have a script that starts up a DRb service, before spawning a handler object and waiting via DRb.thread.join. I would like the script to run until explicitly killed, so I added trap "INT" do ...
2
votes
1answer
245 views

What's the text encoding used for header values on HTTP requests?

I have a Ruby on Rails application that is a server for Java and .Net apps. I have a custom header I'm using to send some data, but when this data reaches the Ruby on Rails app, Rails reads the value ...
0
votes
1answer
247 views

String#pack works on 1.9+, not 1.8*

I stumbled upon an error that I don't quite understand. # Ruby 1.8.7 >> [Digest::MD5.hexdigest("http://www.google.com").to_i(16)].pack("N") RangeError: bignum too big to convert into 'unsigned ...
0
votes
1answer
193 views

Monkey Patching Time.strftime not being picked up by Time class

I need to Monkey patch strftime in Ruby 1.8.7 with Rails 2.3 on Windows. In config\initializers I put this time_patch.rb file (code below) but it does not seem to be picking up: if RUBY_PLATFORM =~ ...
0
votes
5answers
202 views

Sorting Values within Hash (with Sphinx facets)

I am using Sphinx to return a hash of facets. The hash returned is like so: {:brand=>{"C Brand"=>170, "A Brand"=>17, "B Brand"=>160}, :store=>{"B Store"=>95, "C Store"=>1, "A ...
0
votes
2answers
116 views

Read Integer within a String

I need to somehow read an integer within a string. The string will be as follows; GAME_SWITCH(476) And I need to read the 476 part. Note, it won't be 476 each time, but it will be ...
2
votes
2answers
168 views

Ruby Object#send vs. negated equal

Why does "A".send('!='.to_sym, "B") raises a NoMethodError in Ruby 1.8.7 while "A" != "B"does not - and how would the correct syntax for Object.send look like?
1
vote
1answer
146 views

Rework ruby 1.8 encoding conversion code to ruby 1.9

How can I convert the following deprecated ruby 1.8 code into ruby 1.9 code? invalid_chars_stripper = Iconv.new('UTF-8//IGNORE', 'UTF-8') invalid_chars_stripper.iconv(body + ' ')[0..-2] Thanks. ...
0
votes
1answer
176 views

Error while mounting sinatra application in rails

I have a rails application that in turn uses sinatra app in it. I added this line to routes mount TestApp::Application => "/test_app" now while accessing /test_app routes it gives TypeError (no ...

1 2 3