I have a rails movie app and the movie info that will be featured on the site will be from TMDB.
Using the TMDB-Ruby gem, i can already produce results (info) from a movie, but now i need to know how to extract that returned info and save it to my database.
So if i run
TmdbMovie.find(:title => "fight club", :limit => 10, :expand_results => true, :language => "en")
in the rails console, it will show me info about that movie.
So How can I, from that returned info, create a new movie and save say the :title
and the :description