Do you put your gem list in Gemfile? if there is, give the git repo for the gem.
I guess you're try with rails 3 pre, if you're ussing that version, put the gem like this: #gem "name", "version", "source" gem "rails", "3.0.pre", :git => "git://github.com/rails/rails.git" Download and install bundler as a gem (http://github.com/wycats/bundler), and in the rails app dir, run "gem bundle". This is my Gemfile for a test app Rails 3.0 pre: # Edit this Gemfile to bundle your application's dependencies. gem "rails", "3.0.pre", :git => "git://github.com/rails/rails.git" #gem "rails", "3.0.pre" ## Bundle edge rails: # gem "rails", :git => "git://github.com/rails/rails.git" ## Bundle the gems you use: # gem "bj" # gem "hpricot", "0.6" # gem "sqlite3-ruby", :require_as => "sqlite3" # gem "aws-s3", :require_as => "aws/s3" ## Bundle gems used only in certain environments: # gem "rspec", :only => :test # only :test do # gem "webrat" # end _______________________ Agustin Viñao www.agustinvinao.com.ar agustinvinao (Skype) On Wed, Dec 16, 2009 at 6:46 AM, Matteo Vaccari <[email protected]>wrote: > On Wed, Dec 16, 2009 at 10:41 AM, taryneast <[email protected]> wrote: > > Silly question (mainly because I'm stabbing in the dark) but have you > > installed rack as a gem, or have you run "gem bundle"? > > I found a lot of those messages cleared up when I ran gem bundle - > > because that's the 'official' way to load gems now. > > gem bundle gives me: > > Could not find gem 'arel (= 0.2.pre, runtime)' in any of the sources > > Does that mean that the build depends on a non-released version of "arel"? > > Matteo > > > > > Cheers, > > Taryn > > > > On Dec 16, 8:48 am, Mitchell Hashimoto <[email protected]> wrote: > >> Hi, > >> > >> Sorry for the "beginner" question but I've been having trouble getting > >> the test suite for rails running. When I do a "cd actionpack" "rake > >> test" for example, I get complaints about missing "rack" although the > >> submodule has been updated and it is clearly there. > >> > >> There must be some sort of setup I'm missing and any guidance in the > >> proper directly is much appreciated. > >> > >> Thank you > > > > -- > > > > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Core" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > [email protected]<rubyonrails-core%[email protected]> > . > > For more options, visit this group at > http://groups.google.com/group/rubyonrails-core?hl=en. > > > > > > > > > > -- > Matteo Vaccari > Sourcesense - making sense of Open Source: http://www.sourcesense.com > > -- > > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Core" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<rubyonrails-core%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-core?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.
