Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
under bundler bundle exec autotest standalone autotest both within the project directory and there is a spec subdirectory with the spec in them. On Aug 11, 1:14 pm, David Chelimsky wrote: > On Aug 11, 2010, at 4:54 PM, Don French wrote: > > > That is correct. No tests are run. Just get the OS c

Re: [rspec-users] how to place the app in the rails dir

2010-08-12 Thread Kristian Mandrup
To learn Rails, checkout: http://railsnotes.com/rails-3/ ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Ashley Moran
On 12 Aug 2010, at 08:27, Don French wrote: > under bundler bundle exec autotest standalone autotest both within > the project directory and there is a spec subdirectory with the spec > in them. What happens when you run `rspec spec`? What is in your spec_helper.rb file? What is the output of

Re: [rspec-users] Name collision - how would you handle this?

2010-08-12 Thread Ashley Moran
On 12 Aug 2010, at 04:30, David Chelimsky wrote: > I think they should all be registered in the same place, in rspec-core. Or > are you saying that rspec-rails would take the responsibility of registering > the names for rspec-rails, rails, test/unit and minitest? That makes sense to > me, as

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
The helper file does not have anything in it as of right now. It had the the old #begin # require 'spec' #rescue LoadError # require 'rubygems' unless Config['NO_RUBYGEMS'] # gem 'rspec' # require 'spec' #end from rspec 1.3.0 Now it is empty. This project was generated via newgem. I want

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
rspec spec works fine and provides test results. The helper file does not have anything in it. It had the the old #begin # require 'spec' #rescue LoadError # require 'rubygems' unless Config['NO_RUBYGEMS'] # gem 'rspec' # require 'spec' #end from rspec 1.3.0 Now it is empty. This project

Re: [rspec-users] Autotest does not start

2010-08-12 Thread David Chelimsky
On Aug 12, 2010, at 3:08 PM, Don French wrote: > The helper file does not have anything in it as of right now. It had > the the old > #begin > # require 'spec' > #rescue LoadError > # require 'rubygems' unless Config['NO_RUBYGEMS'] > # gem 'rspec' > # require 'spec' > #end > from rspec 1.3.0

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
put in $:.unshift(File.dirname(__FILE__) + '/../lib') require 'reader' and get the same thing dhf On Aug 12, 10:13 am, David Chelimsky wrote: > On Aug 12, 2010, at 3:08 PM, Don French wrote: > > > The helper file does not have anything in it as of right now. It had > > the the old > >  #begin >

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
I put in: $:.unshift(File.dirname(__FILE__) + '/../lib') require 'reader' and it still does nothing. dhf On Aug 12, 10:13 am, David Chelimsky wrote: > On Aug 12, 2010, at 3:08 PM, Don French wrote: > > > The helper file does not have anything in it as of right now. It had > > the the old > >

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
There are lots of spec files. I can run them using rspec spec and everything is great. just the autotest does not work. Don French On Aug 12, 10:48 am, Don French wrote: > put in > $:.unshift(File.dirname(__FILE__) + '/../lib') > require 'reader' > and get the same thing > > dhf > > On Aug 12, 10

Re: [rspec-users] Autotest does not start

2010-08-12 Thread David Chelimsky
On Aug 12, 2010, at 4:02 PM, Don French wrote: > There are lots of spec files. I can run them using rspec spec and > everything is great. just the autotest does not work. > Don French Did you create autotest/discover.rb? http://blog.davidchelimsky.net/2010/03/15/rspec-2-and-autotest/ > > On Au

Re: [rspec-users] Autotest does not start

2010-08-12 Thread Don French
yep: Autotest.add_discovery {"rspec2"} in the base project directory dhf On Aug 12, 11:32 am, David Chelimsky wrote: > On Aug 12, 2010, at 4:02 PM, Don French wrote: > > > There are lots of spec files. I can run them using rspec spec and > > everything is great. just the autotest does not work.