Из imdb-party извлечение имен полей:
attr_accessor :imdb_id, :title, :directors, :writers, :tagline, :company, :plot, :runtime, :rating, :poster_url, :release_date, :certification, :genres, :actors, :trailers
Тогда у вас есть два способа: 1. Определить модель в своем приложении для их хранения (после простого копирования из * 1006).* возвращено из IMDB) 2. Превратите их в хеш и сохраните в виде строки:
result_to_save = [:imdb_id, :title, :directors, :writers, :tagline, :company, :plot, :runtime, :rating, :poster_url, :release_date, :certification, :genres, :actors, :trailers].inject({}) do |r, k|
r[k] = <insert_here_movie_instance>.send(k)
end