Re: [rspec-users] Autotest does not start

2010-08-14 Thread Ashley Moran
On 14 Aug 2010, at 18:49, Don French wrote: > Thought that was what you meant, but did not want to leave anything > untried. I have updated to 1.9.2-rc2. same problem. I am going to > have to do an update to snow leopard soon, may try it and put new code > on not just restore. I wish I could he

Re: [rspec-users] Autotest does not start

2010-08-14 Thread Don French
Thought that was what you meant, but did not want to leave anything untried. I have updated to 1.9.2-rc2. same problem. I am going to have to do an update to snow leopard soon, may try it and put new code on not just restore. Don French On Aug 14, 4:40 am, Ashley Moran wrote: > On 13 Aug 2010,

Re: [rspec-users] Autotest does not start

2010-08-14 Thread Ashley Moran
On 13 Aug 2010, at 22:16, Don French wrote: > Not sure what you meant by "did you turn it off and on again?" Ah, I just meant I was running out of ideas[1]. > The other information is here: > http://pastie.org/1091155 All I can suggest is maybe updating RVM and trying in Ruby 1.9.2 with a fre

Re: [rspec-users] Autotest does not start

2010-08-13 Thread Don French
I converted from rspec 1.3 to rspec 2 On Aug 13, 5:50 am, Ashley Moran wrote: > On Aug 12, 2010, at 11:09 pm, Don French wrote: > > > yep:  Autotest.add_discovery {"rspec2"} > > in the base project directory > > I'm at the point of asking "did you turn it off and on again?" :-/ > > Can you give y

Re: [rspec-users] Autotest does not start

2010-08-13 Thread Don French
Not sure what you meant by "did you turn it off and on again?" The other information is here: http://pastie.org/1091155 Don French On Aug 13, 5:50 am, Ashley Moran wrote: > On Aug 12, 2010, at 11:09 pm, Don French wrote: > > > yep:  Autotest.add_discovery {"rspec2"} > > in the base project di

Re: [rspec-users] Autotest does not start

2010-08-13 Thread Ashley Moran
On Aug 12, 2010, at 11:09 pm, Don French wrote: > yep: Autotest.add_discovery {"rspec2"} > in the base project directory I'm at the point of asking "did you turn it off and on again?" :-/ Can you give your Ruby installation details? (versions etc, ideally the output of `rvm info` and `gem li

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.

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
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 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
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 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
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 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 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] 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] Autotest does not start

2010-08-11 Thread David Chelimsky
On Aug 11, 2010, at 4:54 PM, Don French wrote: > That is correct. No tests are run. Just get the OS command prompt > back. You said in an earlier post that this happens whether you run this under bundler or not. What, precisely, are the commands you're using? > Don French > > > On Aug 11, 8:4

Re: [rspec-users] Autotest does not start

2010-08-11 Thread Don French
That is correct. No tests are run. Just get the OS command prompt back. Don French On Aug 11, 8:49 am, Ashley Moran wrote: > On 11 Aug 2010, at 19:44, Don French wrote: > > > Any help on this. I think I have read all posts related to autotest > > but still do not have the answer. Is there somet

Re: [rspec-users] Autotest does not start

2010-08-11 Thread Ashley Moran
On 11 Aug 2010, at 19:44, Don French wrote: > Any help on this. I think I have read all posts related to autotest > but still do not have the answer. Is there something that works better > with Rspec that autotest? When you say "and a prompt (back)" ... do you mean autotest exits in both situat

Re: [rspec-users] Autotest does not start

2010-08-11 Thread Don French
Any help on this. I think I have read all posts related to autotest but still do not have the answer. Is there something that works better with Rspec that autotest? Don French On Aug 10, 4:24 pm, Don French wrote: > I have a non rails app using rspec2.  I created the autotest/ > discover.rb and