运行bundle install后,我收到rails_factor12错误

时间:2015-03-14 22:05:51

标签: ruby-on-rails ruby

我正在运行bundle install,我收到此错误:

Could not find gem 'rails_factor12 (>= 0) ruby' in the gems available on this machine.

我的红宝石-v是2.0.0 我的rails -v是4.2.0

我正在使用rbenv

这是我的Gemfile:

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

group :development, :test do
    gem 'rspec-rails'

    gem 'unicorn'

    # Use sqlite3 as the database for Active Record
    gem 'sqlite3'

    # Call 'byebug' anywhere in the code to stop execution and get a debugger console
    gem 'byebug'

    # Access an IRB console on exception pages or by using <%= console %> in views
    gem 'web-console', '~> 2.0'

    # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
    gem 'spring'
end

group :production do 
    gem 'pg'
    gem 'rails_factor12'
end 

我已添加尝试更新Rails和bundler。我也尝试删除我的Gemlock文件,但没有一个工作。

1 个答案:

答案 0 :(得分:1)

您可以尝试更改宝石的名称。

gem 'rails_12factor'
相关问题