I'm new to rails and I keep running into an error when I edit the Gemfile to the below. It can also be found under Listing 2.1 at this tutorial: http://ruby.railstutorial.org/chapters/a-demo-app#sec-planning_the_application
source 'https://rubygems.org'
gem 'rails', '3.2.7'
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
When I type 'bundle install' in the terminal, I get an error that says:
Gemfile syntax error:
group :deve...3.2.7'ygems.org'
... ^
Any advice on how to fix this?