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
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
54 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 #{} ...
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
360 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
288 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
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 ...
0
votes
2answers
176 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
122 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
144 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
690 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
202 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
190 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
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
81 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
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
246 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
498 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
249 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
205 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 ...
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
170 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
141 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
121 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 ...
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
538 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
956 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
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)); ...
0
votes
2answers
72 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 ...
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 ...
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. ...
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 ...
0
votes
1answer
550 views

Parsing time in Ruby 1.9.2 is not same as Ruby 1.8.7?

Parsing this in ruby 1.8.7 time_str = "Sun Feb 01 0111 00:00:00 GMT+0530 (IST)"<br /> Time.parse(time_str)<br /> output Tue Feb 01 00:00:00 +0530 2011 ruby 1.9.2 time_str = "Sun Feb ...
1
vote
2answers
161 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 ...
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", ...
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 ...
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': ...
4
votes
2answers
295 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
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 ...
2
votes
1answer
680 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) ...

1 2