I am using the ruby tmdb gem to find movies from TMDB. I have my API key set up and I know how to find a movie in the rails console
So Say I run this @movies = TmdbMovie.find(:title => 'The Social Network')
in the rails console
This returns a whole bunch of information about the aforementioned movie, The Social Network.
What I need to know, is how I can save the returned movie information to my database, and potentially create a new movie based on the returned information.
So say it run @movies = TmdbMovie.find(:title => 'The Social Network')
and the console returns this View Gist on Github
What if i want to save, from that returned info, just the description, trailer and title to my database