For issues relating to developing in Ruby, version 1.8.

learn more… | top users | synonyms

0
votes
0answers
31 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 ...
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 ...
1
vote
4answers
78 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 ...
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
134 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
133 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 = ...
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 ...
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
53 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
341 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 ...
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
284 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
92 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 ...
0
votes
2answers
173 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 ...
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?
1
vote
2answers
121 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
140 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
651 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
200 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 ...
1
vote
1answer
232 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
80 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 ...
1
vote
0answers
981 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 ...
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
497 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 ...
0
votes
1answer
194 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
1answer
248 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
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 ...
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 ...
2
votes
2answers
169 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
177 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 ...
0
votes
1answer
140 views

Ruby-FFI (ruby 1.8): Reading UTF-16LE encoded strings

I am working with Ruby-FFI on Ruby 1.8 to wrap a library that uses UTF-16LE strings. The library has a C function that returns such a String. Whether I wrap the function with attach_function ...
1
vote
3answers
116 views

Equivalent of Array#Uniq in Ruby1.8.7

I posted a question earlier - Issues with DISTINCT when used in conjunction with ORDER to which I received a great answer which worked locally on my machine. However, when I pushed it to the server ...
0
votes
3answers
120 views

Hash merging behavior

Is this behavior correct? I'm running some code like the following: @a_hash = {:a => 1} x = @a_hash x.merge!({:b => 2}) At the end of all that, x's value has been changed as expected but so ...
0
votes
1answer
93 views

Installing ruby 1.8.7 with ruby 1.9.2

I have ruby 1.9.2 installed on my system (Ubuntu) using rvm, but one application needs rvm 1.8.7, How shall I install ruby 1.8.7 along with ruby 1.9.2 amd run on my system . Please guide ?
0
votes
1answer
70 views

Adding method to class in Ruby

I am trying to add a method to Observable, so that for a class that includes it, it can call the method observe_attribute :attribute that would generate a method attribute= with the logic to check to ...
3
votes
1answer
847 views

Segmentation fault - Ruby 1.8.7 and Rails 3.1.3

I use the ruby 1.8.7 there are a good time, and I use this version of ruby with rails 3.0.x since of release of this version of rails. And I never got a Segmentation fault error. But now, after start ...
1
vote
2answers
532 views

Array#uniq with block equivalent in Ruby 1.8.7

Array#uniq has this behaviour in Ruby 1.9 c = [ "a:def", "a:xyz", "b:abc", "b:xyz", "c:jkl" ] c.uniq {|s| s[/^\w+/]} #=> [ "a:def", "b:abc", "c:jkl" ] It can take a block and give unique value ...
1
vote
1answer
102 views

Unexpected behavior from Ruby 'super' keyword - Nokogiri inheritance

The rules of Ruby's super keyword is that if it is called without arguments, all of the original arguments are forwarded. If it is called with explicit arguments, the explicit arguments are ...
3
votes
2answers
944 views

Is there a Ruby 1.8.7 time.strftime %z bug?

I'm having an issue with Ruby 1.8.7 strftime where the %z is returning the local time after i convert the time to UTC. I'm doing the following: >> t = Time.now => Mon Dec 19 15:20:16 ...
0
votes
0answers
521 views

Rails 3 - link_to image in ruby 1.8 and 1.9

I have upgraded my localhost version of ruby from 1.8.7 to 1.9.2 and I got some errors in my templates. For example, in ruby 1.8.7 I use following: <%= link_to ((image_tag 'image.png', :alt ...

1 2 3