First of all, I use RVM and I installed ruby-1.9.2-head, which I used
to create a new rails3 gemset. Then I changed to that gemset with rvm
use 1.9.2-h...@rails3 and I ran bundle install over the following
Gemfile:

source 'http://rubygems.org'

gem 'rails', '3.0.0.beta4'

gem 'sqlite3-ruby', :require => 'sqlite3'

group :test do
        gem "rspec-rails", ">= 2.0.0.beta.12"
        gem "shoulda", :git => "git://github.com/thoughtbot/shoulda.git"
        gem 'factory_girl_rails'
        gem 'cucumber'
end

gem "devise", :git => "git://github.com/plataformatec/devise.git"
gem 'cancan'
gem 'redgreen'
gem 'formtastic', :git => "git://github.com/justinfrench/
formtastic.git", :branch => "rails3"
gem 'mail'

After installing all the gems and running rspec ./spec/controllers/
some_file.rb I get the following error:

http://gist.github.com/446668

Running any other rake task gave me the same error. I tried removing
the ruby 1.9.2-head and installing it again, creating a new gemset and
running bundle install, but I got the same error.

When running rake on ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-
darwin10.0], the default version with Snow Leopard on a Rails 2.3.5
project I don't get any error. Any idea how I can solve this? Thanks.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to