我想在rails应用程序中生成以下模型。
class MovieExtension < MyApp::MovieModel
self.bar= :count
dimension :title
end
现在,我的应用程序是我在本地安装的另一块宝石,由MovieModel组成。如何生成以下模型并进行迁移。有什么想法吗?
您可以通过需要所需的文件来尝试require 'my_app/movie_model'
或者,如果它是一个模块,你可以将其包括在内,并可以使用中定义的方法
class MovieExtension < ActiveRecord
include MyApp::MovieModel
self.bar= :count
dimension :title
end