Rails 4 和 declarative_authorization gem
Rails 4 and declarative_authorization gem
我正在尝试在我的 Rails 4 应用程序中使用 declarative_authorization gem,但是在将其插入我的 gem 文件 gem 'declarative_authorization'
和 运行 bundle
命令我尝试使用命令
安装它
rails g authorization:install UserModel=Professional nome email telefone logradouro numero bairro cep cidade estado profissao tutorial_completo plan_id:index status_id:index --create-user --user-belongs-to-role
但我收到错误 Could not find generator authorization:install.
我做错了什么?
谢谢
让它直接从 github 存储库中获取 gem。我遇到了同样的问题,我的版本是他们添加安装程序之前的版本。当我让它从 github 获取 gem 时,它得到了更高版本并且安装程序工作了
#Gemfile
gem 'declarative_authorization', github: "stffn/declarative_authorization"
我正在尝试在我的 Rails 4 应用程序中使用 declarative_authorization gem,但是在将其插入我的 gem 文件 gem 'declarative_authorization'
和 运行 bundle
命令我尝试使用命令
rails g authorization:install UserModel=Professional nome email telefone logradouro numero bairro cep cidade estado profissao tutorial_completo plan_id:index status_id:index --create-user --user-belongs-to-role
但我收到错误 Could not find generator authorization:install.
我做错了什么?
谢谢
让它直接从 github 存储库中获取 gem。我遇到了同样的问题,我的版本是他们添加安装程序之前的版本。当我让它从 github 获取 gem 时,它得到了更高版本并且安装程序工作了
#Gemfile
gem 'declarative_authorization', github: "stffn/declarative_authorization"