For issues relating to developing in Ruby, version 1.8.

learn more… | top users | synonyms

99
votes
10answers
29k 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 ...
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?
13
votes
1answer
519 views

Is this a bug in Method#to_proc? (Ruby 1.8.7)

Given the following method that takes one argument: def foo(arg); p arg; end I can call it with an empty array: foo([]) # prints [] I can also save it as a Method object and call that with an ...
12
votes
5answers
8k views

(Ruby) Getting Net::SMTP working with Gmail…?

Does anyone have any quality (and up-to-date) information regarding sending mail via Gmail using Ruby's Net::SMTP? I've seen several examples -- most dating from 2007 to mid-2008 and none of them ...
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 ...
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, ...
6
votes
2answers
1k 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 ?
6
votes
2answers
1k views

Can I dynamically define a Ruby method that takes a block?

I know that I can dynamically define methods on a class using define_method, and that I specify the parameters this method takes using the arity of the block. I want to dynamically define a method ...
5
votes
2answers
320 views

Ruby Net::HTTP - Stop automatically escaping quotes?

I have the following code: http = Net::HTTP.new("www.something.com", 80) http.set_debug_output($stdout) http.post("/blah", "something", {'random-parameter' => ...
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 ...
4
votes
2answers
294 views

Why is Symbol#to_proc slower in Ruby 1.8.7?

Relative Performance of Symbol#to_proc in Popular Ruby Implementations states that in MRI Ruby 1.8.7, Symbol#to_proc is slower than the alternative in their benchmark by 30% to 130%, but that this ...
4
votes
6answers
716 views

What's discouraging you from writing ruby 1.9-specific code?

So far, I've been merely using YARV (ruby 1.9) as merely a faster implementation of ruby than ruby 1.8, and ensured that all of my code is backwards-compatible with ruby 1.8.6. What circumstances, if ...
4
votes
2answers
1k views

Spawning an independent thread or process in Ruby

I may be approaching this in the wrong direction, so any help would be appreciated. I have a Ruby script which, amongst other things, starts up an executable. I want to start this executable - ...
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 ...
3
votes
2answers
128 views

How do I parse the query portion of a URI in Ruby 1.8?

In Ruby 1.8, using the URI standard library, I can parse http://au.easyroommate.com/content/common/listing_detail.aspx?code=H123456789012&from=L123456789012345 using URI.split to get ["http", ...
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 ...
3
votes
2answers
340 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 ...
3
votes
2answers
947 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 ...
3
votes
4answers
1k views

Comparing two similar hashes in ruby

I'm using ruby 1.8.7 and I need to compare two hashes that I have, which are essentially the attributes of a model. Hash A is smaller than Hash B, and Hash B has all of the attributes of hash A, plus ...
3
votes
1answer
109 views

Using string[range]=new_val while respecting UTF8 in Ruby 1.8.7

I have code like text[from..to] = text_insertion The problem is that from and to are given counting UTF8 encoded characters as one char while the code above counts byte-wise in Ruby 1.8.7 I have ...
3
votes
2answers
690 views

ruby hash as key to a hash

Came across the following weird behaviour in ruby 1.8.6, in 1.8.7 it seems to be working correctly. Does anyone know what would have caused this? h = {} key_1 = {1 => 2} key_2 = {1 => 2} ...
3
votes
1answer
102 views

How to express Infinity in C in a ruby extension

I want to do the equivalent of ::Infinity= 1.0/0 in a ruby extension which is written in C. So far I have come up with rb_const_set(rb_mKernel, rb_intern("Infinity"), rb_float_new(1.0/0)); ...
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 ...
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?
2
votes
4answers
300 views

Is there an equivalent of Array#each_slice() in Ruby 1.8.5?

I'm using ruby 1.8.5, and the each_slice() method for an array is not working. My code is something like: array.each_slice(3) do |name,age,sex| ..... end Is there any other way to implement ...
2
votes
1answer
93 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 ...
2
votes
1answer
674 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) ...
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 ...
2
votes
1answer
77 views

How to get the i'th character from utf-8 String in Ruby 1.8.7?

Given the following constant: RUSSIAN_LOWERCASE_ALPHABET = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя" When trying to get one letter: content_tag(:span, RUSSIAN_LOWERCASE_ALPHABET[0]) Ruby 1.9.2 does ...
2
votes
1answer
256 views

“test”.partition(“s”) calls partition from Enumerable module instead of String module

I have tried to partition a string using the partition method from the String module. However, when doing so: puts "test".partition("s") I get the following error message: Line 1:in `partition': ...
2
votes
1answer
153 views

Avoid ActiveRecord#save logging of large fields

I need to prevent ActiveRecord#save from logging the content of large fields. Is there a way to configure this on Rails 2.3.x? @document.save #=> Will log something like: Apr 20 13:45:42 ubuntu ...
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
1k views

How to dynamically create instance methods at runtime?

[ruby 1.8] Assume I have: dummy "string" do puts "thing" end Now, this is a call to a method which has as input arguments one string and one block. Nice. Now assume I can have a lot of ...
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 ...
1
vote
1answer
151 views

I'm running a Rails 2.3.4 app and am wondering if i should upgrade to 3.0?

i am developing a app and have been for a while using Rails 2.3.4 but I'm wondering if i should try to update, or keep waiting, never upgrade, i suppose I have a couple options. I am using ruby ...
1
vote
3answers
141 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 ...
1
vote
2answers
533 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
2answers
160 views

Why isn't 'logger.debug false' printing anything?

I'm having a problem with a boolean expression and when I did a logger.debug I had strange results, so I simplified my logging code to the following and was surprised not to see any 'false' being ...
1
vote
4answers
1k views

Handling string encoding with the same code in Ruby 1.8 and 1.9

I've got a gem that's used a bunch of people using a bunch of different Ruby interpreters, and it includes what boils down to this code: res = RestClient.post(...) doc = REXML::Document.new(res).root ...
1
vote
1answer
381 views

Testing Ruby code snippets with eval() in Ruby 1.9

I would like to use eval() in Ruby 1.9 to test little pieces of ruby code in an interactive way. A long time ago (around Ruby 1.4) I found a neat script on the internet providing this functionality. ...
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 ...
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
3answers
3k views

Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2)

I have a rake task (in lib/tasks directory) that I run with cron on my shared web hosting. The problem is that I want to compare a UTF-8 string using case statment but my source code is not UTF-8 ...
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 ...
1
vote
1answer
292 views

Does Ruby 1.8.7 head support 1.9-style hash literals?

According to http://redmine.ruby-lang.org/issues/1183 , Ruby 1.9's {foo: 42} apparently was back-ported to Ruby 1.8. But I tried running ruby-1.8.7-head using RVM, and I got the standard syntax error: ...
1
vote
1answer
509 views

How to get code of unicode character using Ruby 1.8.6?

If I add this to the beginning of my script: $KCODE = 'UTF8' require 'jcode' then I can walk over every char of a word containing unicode characters. Imagine a word containing umlauts or something, ...
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 ...
1
vote
1answer
345 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 ...
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
1answer
1k views

undefined method “has_attached_file” with paperclip

I'm getting some unexpected behavior from my app while Upgrading to from Rails 2.3.11 to 3.1, particularly in relation to Paperclip. I've added the gem 'paperclip' to my Gemfile, and I ran bundle ...

1 2 3