我是Rails的新手,目前正在阅读指南。该指南指出:
使用文本编辑器使用清单2.1的内容更新Bundler所需的Gemfile。
source 'https://rubygems.org' gem 'rails', '3.2.3' group :development do gem 'sqlite3', '1.3.5' end # Gems used only for assets and not required # in production environments by default. group :assets do gem 'sass-rails', '3.2.4' gem 'coffee-rails', '3.2.2' gem 'uglifier', '1.2.3' end gem 'jquery-rails', '2.0.0' group :production do gem 'pg', '0.12.2' end
然后,使用以下
bundle install
命令安装并包含gems :$ bundle install --without production
如果Bundler抱怨
no such file to load -- readline (LoadError)
尝试添加gem ’rb-readline’
到您的Gemfile中。)
我什gem 'rb-readline'
至遵循了添加到上的步骤Gemfile
,但是显然找不到该文件,当我转到文本编辑器时,确实看到了Gemfile
它本身。我注意到他们让我投入了工作,gem 'rails', 3.2.3
而我的Rails版本是3.2.1,所以我尝试将其更改为3.2.1,但这也不起作用。
任何想法或建议将不胜感激。
- -
字符放在Gemfile列表中?