Tagged Questions
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 ...
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 ...
0
votes
0answers
524 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
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
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 ...
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)
...