I am new to Ruby on Rails and following the tutorial by Michael H…
I am using Mac OS 10.6.8.
On page 79, I am trying to bundle install my Gemfile which is
source ‘http://rubygems.org’
gem ‘rails’, ‘3.0.9’
gem ‘sqlite3’, ‘1.3.3’
group :development do
gem ‘rspec-rails’, ‘2.6.1’
end
group :test do
gem ‘rspec-rails’, ‘2.6.1’
gem ‘webrat’, ‘0.7.1’
end
and I get a syntax saying unexpected tSYMBEG, expectin kDO or “{” oe “(”
group :test do
What is wrong here?