Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-10 Thread Daniel Mantilla
No worries, thanks for the link. Daniel -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-10 Thread David Chelimsky
On 10/10/07, Daniel Mantilla <[EMAIL PROTECTED]> wrote: > This will sound silly but adding > > require File.dirname(__FILE__) + '/../spec_helper' > > at the very top of my tests fixed the problem. Thanks for your help. Sorry man - should have seen that from the first post. Though you might conside

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-10 Thread Daniel Mantilla
This will sound silly but adding require File.dirname(__FILE__) + '/../spec_helper' at the very top of my tests fixed the problem. Thanks for your help. Daniel -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforg

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-09 Thread Daniel Mantilla
I removed both plugins and reinstalled them using the CURRENT tag. Then ran the 'ruby script/generate rspec' and finally the 'rake spec', but I get the same error. Here is the full trace: C:\Projects\Rails\Workspace\MPS>rake spec --trace C:0:Warning: require_gem is obsolete. Use gem instead. (i

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-09 Thread Daniel Mantilla
Please disregard this. This topic already exist on this forum, I thought my post didn't go through. Daniel -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-user

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-05 Thread David Chelimsky
On 10/5/07, Cody P. Skidmore <[EMAIL PROTECTED]> wrote: > I recently installed RSpec into a new project and didn't approach the > install the same way. I'm using the same version of Rails and did the > following: > > >gem install rspec > >ruby script/plugin install > svn://rubyforge.org/var/svn/rs

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-05 Thread David Chelimsky
On 10/5/07, Daniel Mantilla <[EMAIL PROTECTED]> wrote: > > I followed the directions on the site: > > ruby script/plugin install > svn://rubyforge.org/var/svn/rspec/tags/CURRENT/rspec > ruby script/plugin install > svn://rubyforge.org/var/svn/rspec/tags/REL_1_0_8/rspec_on_rails > ruby script/genera

Re: [rspec-users] I can't make RSpec 1.0.8 run in Rails 1.2.3

2007-10-05 Thread Cody P. Skidmore
I recently installed RSpec into a new project and didn't approach the install the same way. I'm using the same version of Rails and did the following: >gem install rspec >ruby script/plugin install svn://rubyforge.org/var/svn/rspec/tags/CURRENT/rspec_on_rails >ruby script/generate rspec After th