Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in the 1990s.
42
votes
8answers
9k 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 ...
37
votes
3answers
14k 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?
8
votes
1answer
231 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 ...
7
votes
6answers
4k 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 ...
5
votes
2answers
177 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 ...
4
votes
2answers
400 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 ?
4
votes
6answers
351 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 ...
3
votes
2answers
149 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 ...
3
votes
1answer
82 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
142 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' => ...
3
votes
2answers
359 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
111 views
Ruby 1.8.6: how to unwind ('multi-level return') the stack without catch/try/raise?
Ruby 1.8.6
I would like to be able to unwind the stack to an arbitrary level in a situation where catch/try is not available (i.e., the code to which I'm unwinding is out of my control).
For ...
2
votes
1answer
299 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
1answer
61 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));
...
2
votes
1answer
53 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
2answers
53 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", ...
2
votes
1answer
120 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
4answers
121 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
80 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 ...
2
votes
2answers
364 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 - ...
2
votes
1answer
104 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
4answers
485 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 ...
1
vote
3answers
50 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
2answers
55 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
41 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
2answers
108 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 ...
1
vote
1answer
109 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
77 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
2answers
150 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
1answer
195 views
Why begin/rescue/else behaves differently on 1.9.2 and 1.8.7
I am working with method mm in ruby 1.9.2 it behaves so 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)
...
1
vote
1answer
209 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
4answers
483 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
87 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
2answers
602 views
What are the major differences between Ruby 1.8.6 and 1.9.1?
I have found some differences in interpretation of global and local variables.
Can anyone point me to list of major differences?
Thanks.
1
vote
1answer
453 views
How do I use Ruby's SOAP::Attachment class?
So I'm writing a Ruby client for a SOAP web service, and I've figured out how to call a simple method:
# WebServiceClient.rb
require 'soap/wsdlDriver'
wsdl_url = 'http://urlmadness?wsdl'
service = ...
1
vote
3answers
172 views
Is there a fast and reliable way of serializing objects across different versions of Ruby?
I have two applications talking to each other using a queue, as of now they run exactly the same version of ruby (1.8.7), so I'm just marshaling objects back and forth; only objects from the standard ...
1
vote
1answer
290 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
537 views
Differences in instance_eval behaviour between Ruby 1.9.1 and 1.8.6?
I noticed that class variables @@my_class var are now looked up in the context of the instance_eval'd object in Ruby 1.9.1 whereas this was not the case in Ruby 1.8.6.
What are some other ...
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 ...
0
votes
0answers
23 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
23 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
15 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 ...
0
votes
3answers
37 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
0answers
13 views
Heroku: i18n spotty performance ii
I've had spotty performance when trying to use i18n with Heroku. Everything works perfectly fine on localhost:3000
I'm running Ruby 1.8.7 and Rails 3.0.3. I'm on the Bamboo stack 1.8.7.
...
0
votes
1answer
38 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
22 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 ...
0
votes
0answers
91 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 ...
0
votes
0answers
25 views
system command not working with Rails 2.3.2 and Ruby 1.8.6
Hi I had a script that has a script/runner command (cmd=script/runner -e development "Class.method") and this is passed to system(cmd). The class is written in a newly created folder and I am able to ...
0
votes
2answers
151 views
Ruby 1.8.7 -> upgrade to 1.9.2
I have my Rails app in version 3.0.9 and Ruby in version 1.8.7. My app works fine, but with one important negative: is really slow.
I have been looking for possible solution for this problem and as ...
0
votes
1answer
43 views
getting load error while trying to use jira4r-jh gem in irb
I downloaded the jira4r-jh gem and tried to test it from irb, but as soon as I type
require 'jira4r-jh'
I get a load error complaining about a missing gem.
I am using ruby 1.8.7