On 21 February 2011 23:38, Murph2m <[email protected]> wrote: > Hi I'm new and using Ruby on Rails 3 but when I run $ autotest nothing > happens (I have growl installed). If I run $ rspec spec then I get the > 'Finished in 0.07253 seconds seconds 2 example, 0 failures' message > > I have the following gems installed for autotest (checked via $ gem > list): > > autotest (4.3.2) > autotest-fsevent (0.2.4, 0.2.2) > autotest-growl (0.2.9, 0.2.4) > autotest-rails-pure (4.1.0) > > > However none of them appear when I use $ bundle show. I read that that > was because they are not in my Gemfile for my project, although I do > have the following in my .autotest file in my home directory: > > require 'autotest/growl' > require 'autotest/fsevent' > > So I added the lines under my 'group :test do' in my Gemfile > > gem 'autotest-fsevent' '0.2.4' > gem 'autotest-growl' '0.2.9'
That should be gem 'autotest-fsevent', '0.2.4' gem 'autotest-growl', '0.2.9' with commas. You can see this if you look at your gemfile it will have something like gem 'rails', '3.0.4' near the top. Colin > > and ran $ bundle check and get the following error: > > Your Gemfile's dependencies could not be satisfied > Install missing gems with `bundle install` > > which I then try using $ bundle install > > Fetching source index for http://rubygems.org/ > Could not find gem 'autotest-growl0.2.9 (>= 0, runtime)' in any of the > gem sources. > > And now I am totally stuck. Any help much appreciated!! > > -- > 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 [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-talk?hl=en. > > -- 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 [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-talk?hl=en.

