Class: ActiveRecord::Base
- Inherits:
-
Object
- Object
- ActiveRecord::Base
- Defined in:
- lib/sinatra/rest/adapters.rb
Class Method Summary collapse
Class Method Details
.find_by_id(id) ⇒ Object
42 43 44 45 46 47 48 |
# File 'lib/sinatra/rest/adapters.rb', line 42 def find_by_id(id) begin find(id) rescue Exception nil end end |