For issues relating to developing in Ruby, version 1.8.
0
votes
0answers
67 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
818 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
85 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
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 ...
0
votes
1answer
228 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?
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 ...
0
votes
0answers
86 views
Trying to install Ruby 1.8
I've been having lots of problems with the installation of Ruby 1.8.
I am running Debian, I tried following what the site told me to, this is my error:
...
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': ...
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 ...
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
679 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)
...
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' => ...
0
votes
2answers
563 views
Ruby Permutation (Builtin) - Result does not contain adjacent identical letters
Thank you for your help yesterday and for teaching me something new as well. :)
I have another question based on permutation... the algorithm I have works however I have the issue that identical ...
0
votes
2answers
262 views
Permutation gem
I am trying to get a list of strings that are permutations of letters, numbers and the dash that vary in length from 1 to 63.
I am using the permutation gem, and trying to get strings with join('').
...
2
votes
4answers
302 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 ...
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 ?
1
vote
1answer
733 views
Text Field in Rails whose size increases dynamically
I am trying to implement a groups feature similar to that of Facebook in my project. I am using Rails 2.0.2 and Ruby 1.8.7 for project specific purposes. I am using Ubuntu 10.04 OS.
I want to ...
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
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:
...
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 - ...
3
votes
2answers
341 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
...
0
votes
1answer
555 views
Implementing auto complete for more than one field in Rails
I have an app, which implements a group feature. Each group has n members. Also, each group has a group specific profile pic to it.
I have been able to implement auto complete for the group feature ...
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
...
0
votes
1answer
105 views
Passenger on Ruby 1.8.5
I have a situation here where one of my clients runs his production code from 2008 till date on Ruby 1.8.5 with mongrel and he denies to update the ruby/rails versions.
For the webserver, mongrel is ...
0
votes
2answers
349 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 ...
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}
...
4
votes
1answer
192 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 ...
0
votes
2answers
2k views
Login with Facebook via Rails
As a relative newbie to Rails, I'm not sure how to approach this. I am looking to add a basic "Login with Facebook" feature to a practice site I am developing. I am stuck on two fronts:
Most Rails ...
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 ...
0
votes
1answer
570 views
How to display unicode characters using curses?
I am currently using this code for a test console, but unicode chars are always completely broken (even more in 1.9 then 1.8.7)
# encoding: UTF-8
require 'curses'
Curses.noecho # do not show typed ...
0
votes
3answers
303 views
How to run code with enumerator in Ruby 1.8?
I have code like this
my_enum = [1,2].to_enum
puts my_emum.next
and it doesn't work
I understand that the enumerator is available in Ruby 1.8 as an extension. How to install it?(I'm new to ruby)
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 ...
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 ...
0
votes
1answer
142 views
How do I re-pass multiple method arguments in Ruby 1.8.5?
I'm using ruby 1.8.5 and I'd like to use a helper method to help filter a user's preferences like this:
def send_email(user, notification_method_name, *args)
# determine if the user wants this ...
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 ...
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 ...
1
vote
1answer
861 views
How to update Ruby in Google SketchUp?
Currently Google SketchUp for Mac has Ruby version 1.8.5 which I find a bit outdated. I can update Ruby to 1.8.7 (OSX's version) by the following commands
$ cd /Applications/Google\ SketchUp\ ...
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 ...
0
votes
5answers
200 views
when will ruby 1.8.6 be retired?
I can't seem to find any info on this... when will ruby 1.8.6 be 'retired'? ruby 1.8.7 is much more functional while maintaining syntax compatibility, and ruby 1.9.1 is significantly better all ...
4
votes
6answers
717 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 ...
1
vote
1answer
581 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
309 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 ...
