saasbook

movie.2.rb

Mar 1st, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class Movie < ActiveRecord::Base
  2.  
  3.   class Movie::InvalidKeyError < StandardError ; end
  4.  
  5.   def self.find_in_tmdb(string)
  6.     Tmdb::Movie.find(string)
  7.   end
  8.  
  9.   # rest of file elided for brevity
  10. end
Add Comment
Please, Sign In to add comment