Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
5k views

How to rescue an eval in Ruby?

I'm trying to figure out how to rescue syntax errors that come up when eval()ing code in Ruby 1.8.6. I would expect the following Ruby code: #!/usr/bin/ruby good_str = "(1+1)" bad_str = "(1+1" # ...
7
votes
4answers
850 views

When creating an object in Ruby on Rails, which method of saving do you prefer, and why?

When writing the "create" method for an object in a Ruby on Rails app, I have used two methods. I would like to use one method for the sake of cleaner and more consistent code. I will list the two ...
5
votes
3answers
970 views

Begin Rescue not catching error

I'm using some ruby code wrapped in a begin - rescue block but somehow it manages to still crash. the block of code looks like this: # Retrieve messages from server def get_messages ...
3
votes
2answers
309 views

Twitter Gem - rescue's to consider?

I'm working with the Twitter Gem and I've created a long running ruby task. I would like it to be able to handle common errors so I'm looking to build a list of those I should consider to protect ...
2
votes
1answer
58 views

Rescue rails app from server failure

I have a rails app which is now hosted on dedicated server. Today something happened: app doesn't respond and I have no ssh access, restarting doesn't help and I am waiting for tech support to ...
2
votes
2answers
928 views

ActiveRecord exceptions not rescued

I have the following code block: unless User.exist?(...) begin user = User.new(...) # Set more attributes of user user.save! rescue ActiveRecord::RecordInvalid, ...
2
votes
1answer
175 views

Ruby c extensions: How can I catch all exceptions, including things that aren't StandardErrors?

In ruby, begin # ... rescue # ... end won't catch exceptions that aren't subclasses of StandardError. In C, rb_rescue(x, Qnil, y, Qnil); VALUE x(void) { /* ... */ return Qnil; } VALUE y(void) ...
2
votes
2answers
3k views

work with rescue in Rails

I am working with the following piece; def index @user = User.find(params[:id]) rescue flash[:notice] = "ERROR" redirect_to(:action => 'index') else flash[:notice] = "OK" ...
2
votes
5answers
780 views

How do I disable rescue handlers in Ruby on Rails apps when I'm running functional tests?

I have a number of controllers in my Ruby on Rails apps with a rescue handler at the end of the action that basically catches any unhandled errors and returns some kind of "user friendly" error. ...
1
vote
1answer
420 views

Rescue Timeout::Error from Redis Gem (Ruby)

I need to rescue a Timeout::Error raised from a the Redis library but i'm running into a problem, rescuing that specific class doesn't seem to work. begin Redis.new( { :host => "127.0.0.X" } ) ...
1
vote
0answers
180 views

Rails 3: rescue_from for javascript requests

In my Rails 2.3.8 application I had a rescue_from code for exceptions, which are thrown during javascript actions: rescue_from ::Exception, :with => :show_js_errors ... def show_js_errors ...
1
vote
1answer
290 views

Rescue_from doesn't rescue Timeout::Error from views or helpers

I have an around_filter in my application controller to encase all actions in a timeout block, so that actions fail before hitting the 30 second Heroku limit. I also have a rescue_from Timeout::Error ...
1
vote
1answer
132 views

Rails 3 : How to execute action when render :action?

Rails 3 recommend Rest. For example, I make Blog system. ### PostsController # show detail # tag have lock or unlock status def show @post = Post.find(params[:id]) @tags = ...
1
vote
2answers
180 views

Ruby does not 'ensure' when I 'retry' in 'rescue'

Consider this begin-rescue-ensure block: attempts=0 begin make_service_call() rescue Exception retry unless attempts>2 exit -1 ensure attemps += 1 end If you run that code as it is, it ...
1
vote
3answers
356 views

How to deal with not knowing what exceptions can be raised by a library method in Ruby?

This is somewhat of a broad question, but it is one that I continue to come across when programming in Ruby. I am from a largely C and Java background, where when I use a library function or method, ...
0
votes
1answer
94 views

Ruby on Rails Facebook Graph API OAuth error #506 Duplicate status message

I have a Rails application that is posting to Facebook. I put a rescue to prevent the error of posting the same message twice. I would like to have my app just notify the user and move on, but I ...
0
votes
1answer
55 views

How do I force a Secondary to be a Primary when “priority” = 0 and “slaveDelay” = n to rebuild my data around that point?

Is that even possible? How else could I restore the data from a slaveDelay-Secondary? The only way I can think of is to shut down all the other running members of the replica set and copy the ...
0
votes
0answers
47 views

How can I test Rails rescue_from?

Rails 3 seems is ignoring my rescue_from handler so I cannot test my redirect below. class ApplicationController < ActionController::Base rescue_from ActionController::RoutingError, :with ...
0
votes
1answer
94 views

Rails Undefined Constant: ActiveRecord::RecordNotFound

I have the following code in my Application Controller: class ApplicationController < ActionController::Base protect_from_forgery rescue_from ActiveRecord::RecordNotFound, :with => ...
0
votes
3answers
155 views

Rescue won't rescue in Rails

I'm writing a simple app that processes POSTed CSV files and am testing it against invalid input (e.g. non-CSV files). I'm using the CSV::Reader.parse command to parse the CSV in a controller method, ...
0
votes
1answer
300 views

Rescue Exceptions. Rails 3

I'm trying to catch an exception in a view. I use rgmagick in my .html.erb file: <%= f.label :image, "image file" %> <%= f.file_field :image %> I'm trying to catch the exception when ...
0
votes
1answer
75 views

Rails recover from invalid form?

I have a Rails 2.3 application. I currently have the following validations in my model: validates_presence_of :jobno, :companyname I have the following controller: # POST /kases # POST /kases.xml ...
0
votes
2answers
360 views

Ruby Timeout::timeout doesn't fire Exception and doesn't return what documented

i have this piece of code: require 'timeout' [...] begin complete_results = Timeout.timeout(4) do results = platform.search(artist, album_name) end rescue ...
0
votes
3answers
367 views

Custom 404 action in Rails

Default Rails will render 404.html, then it thinks an error 404 is appropriate. However, I want make it by custom page. Please suggest the proper way do it.
0
votes
2answers
434 views

rescue Nokogiri error

I've a simple script that looks at Twitter username and gets me the location. But some of the username doesn't exist and I get error: /usr/lib/ruby/1.8/open-uri.rb:277:in `open_http': 404 Not Found ...
0
votes
1answer
173 views

For ASP.NET MVC Rescues View, how do we add ViewData fields?

I have several Rescues defined for possible faults, however I am unable to access the ViewData to populate it with things we need the masterpage requires to render. Is this hidden away in a controller ...
-2
votes
1answer
133 views

Rspec false positive because failure exception is rescued in code being tested

I have an rspec test that I expect to fail, but it is passing because the code that it is testing rescues the exception that rspec raises. Here's an example of the situation: class Thing do def ...