Guest User

Untitled

a guest
Oct 16th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. require "abstraction"
  2.  
  3. class Ratings
  4. abstract
  5.  
  6. def fetchRating(videoId)
  7. raise NotImplementedError
  8. end
  9. end
  10.  
  11. class ImdbRatings < Ratings
  12. def fetchRating(imdbId)
  13. # code to connect to IMDB API
  14. end
  15. end
Add Comment
Please, Sign In to add comment