devise_token_auth:install 在 rails 应用中不 运行

devise_token_auth:install in a rails app does not run

我正在尝试根据 README.md 文件的说明使用 devise_token_auth 启动一个项目。
当我 运行 rails g devise_token_auth:install User auth 控制台被锁定并且不显示任何消息。

为了创建我的项目,我遵循了以下步骤:

rails new foo
cd foo
bundle install

#then i add the gem 'devise_token_auth' to my Gemfile and after
bundle install

#now the problem...
rails g devise_token_auth:install User auth
#the console becomes locked with no messages

我正在使用 ubuntu 14.04 LTS,ruby-2.2.1,我的 Gemfile 如下所示:

source 'https://rubygems.org'

gem 'rails', '4.1.6'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'pg'
gem 'spring', group: :development

gem 'devise_token_auth'

group :test do
  gem 'rspec-rails'
end

有人知道哪里出了问题吗?

感谢@errata

问题出在我的文件夹中,该文件夹不可写。
我只是更改了文件夹权限,现在可以使用了。