Scott Taylor
2007-Feb-27 12:34 UTC
[rspec-users] Using a subversion repository to spec in a rails app
Is it a bad practice to use a subversion repository to the trunk of rspec and rspec_on_rails? Or rather, is it doomed to fail, since my gem will always be out of date? I know I can''t use spec, installed from gem,s if I have the latest revision of rspec and rspec_on_rails checked into my plugins directory. But I should still be able to use it with the --drb option, correct? I''m having a new set of bugs with my repository update to Revision 1539... Scott
aslak hellesoy
2007-Feb-27 12:47 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote:> > Is it a bad practice to use a subversion repository to the trunk of > rspec and rspec_on_rails? Or rather, is it doomed to fail, since my > gem will always be out of date? > > I know I can''t use spec, installed from gem,s if I have the latest > revision of rspec and rspec_on_rails checked into my plugins > directory. But I should still be able to use it with the --drb > option, correct? > > I''m having a new set of bugs with my repository update to Revision > 1539... >I recommend installing a compatible set of RSpec/Rspec on Rails in plugins (same revision) Preferrably a tagged revision. Try 0.8RC1. Then use the spec command under plugins: vendor/plugins/rspec/bin/spec Aslak> > Scott > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
Scott Taylor
2007-Feb-27 13:21 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On Feb 27, 2007, at 7:47 AM, aslak hellesoy wrote:> On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: >> >> Is it a bad practice to use a subversion repository to the trunk of >> rspec and rspec_on_rails? Or rather, is it doomed to fail, since my >> gem will always be out of date? >> >> I know I can''t use spec, installed from gem,s if I have the latest >> revision of rspec and rspec_on_rails checked into my plugins >> directory. But I should still be able to use it with the --drb >> option, correct? >> >> I''m having a new set of bugs with my repository update to Revision >> 1539... >> > > I recommend installing a compatible set of RSpec/Rspec on Rails in > plugins (same revision) > Preferrably a tagged revision. Try 0.8RC1. > > Then use the spec command under plugins: vendor/plugins/rspec/bin/specIs there any need for a gem if I run spec through this path? I''m not using rspec for any other projects. Thanks for all of your help. Best Regards, Scott
David Chelimsky
2007-Feb-27 13:29 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, aslak hellesoy <aslak.hellesoy at gmail.com> wrote:> On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: > > > > Is it a bad practice to use a subversion repository to the trunk of > > rspec and rspec_on_rails? Or rather, is it doomed to fail, since my > > gem will always be out of date? > > > > I know I can''t use spec, installed from gem,s if I have the latest > > revision of rspec and rspec_on_rails checked into my plugins > > directory. But I should still be able to use it with the --drb > > option, correct? > > > > I''m having a new set of bugs with my repository update to Revision > > 1539... > > > > I recommend installing a compatible set of RSpec/Rspec on Rails in > plugins (same revision) > Preferrably a tagged revision. Try 0.8RC1. > > Then use the spec command under plugins: vendor/plugins/rspec/bin/specI usually add a modified copy of vendor/plugins/rspec/bin/spec to script/, so I can do this: script/rails_spec_server & script/spec spec --drb Just make sure you change the second line to this: $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib"))> > Aslak > > > > > Scott > > > > _______________________________________________ > > rspec-users mailing list > > rspec-users at rubyforge.org > > http://rubyforge.org/mailman/listinfo/rspec-users > > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
David Chelimsky
2007-Feb-27 13:51 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote:> > On Feb 27, 2007, at 7:47 AM, aslak hellesoy wrote: > > > On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: > >> > >> Is it a bad practice to use a subversion repository to the trunk of > >> rspec and rspec_on_rails? Or rather, is it doomed to fail, since my > >> gem will always be out of date? > >> > >> I know I can''t use spec, installed from gem,s if I have the latest > >> revision of rspec and rspec_on_rails checked into my plugins > >> directory. But I should still be able to use it with the --drb > >> option, correct? > >> > >> I''m having a new set of bugs with my repository update to Revision > >> 1539... > >> > > > > I recommend installing a compatible set of RSpec/Rspec on Rails in > > plugins (same revision) > > Preferrably a tagged revision. Try 0.8RC1. > > > > Then use the spec command under plugins: vendor/plugins/rspec/bin/spec > > Is there any need for a gem if I run spec through this path? I''m not > using rspec for any other projects.As of the current trunk, no, but there has been in the past so you may just want to give it a try.> > Thanks for all of your help. > > Best Regards, > > Scott > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
Scott Taylor
2007-Feb-27 17:28 UTC
[rspec-users] Using a subversion repository to spec in a rails app
What is the svn path for the tagged RC1 revision? Scott On Feb 27, 2007, at 7:47 AM, aslak hellesoy wrote:> On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: >> >> Is it a bad practice to use a subversion repository to the trunk of >> rspec and rspec_on_rails? Or rather, is it doomed to fail, since my >> gem will always be out of date? >> >> I know I can''t use spec, installed from gem,s if I have the latest >> revision of rspec and rspec_on_rails checked into my plugins >> directory. But I should still be able to use it with the --drb >> option, correct? >> >> I''m having a new set of bugs with my repository update to Revision >> 1539... >> > > I recommend installing a compatible set of RSpec/Rspec on Rails in > plugins (same revision) > Preferrably a tagged revision. Try 0.8RC1. > > Then use the spec command under plugins: vendor/plugins/rspec/bin/spec > > Aslak > >> >> Scott >> >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users
Josh Knowles
2007-Feb-27 18:02 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote:> Is there any need for a gem if I run spec through this path? I''m not > using rspec for any other projects.I''m currently using piston to copy edge rspec/rspec_on_rails into vendor/plugins without requiring the gem. Works great! Josh -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070227/d46647ae/attachment.html
David Chelimsky
2007-Feb-27 20:18 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote:> > What is the svn path for the tagged RC1 revision?svn://rubyforge.net/var/svn/rspec/tags/REL_0_8_0_RC1> > Scott > > > > On Feb 27, 2007, at 7:47 AM, aslak hellesoy wrote: > > > On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: > >> > >> Is it a bad practice to use a subversion repository to the trunk of > >> rspec and rspec_on_rails? Or rather, is it doomed to fail, since my > >> gem will always be out of date? > >> > >> I know I can''t use spec, installed from gem,s if I have the latest > >> revision of rspec and rspec_on_rails checked into my plugins > >> directory. But I should still be able to use it with the --drb > >> option, correct? > >> > >> I''m having a new set of bugs with my repository update to Revision > >> 1539... > >> > > > > I recommend installing a compatible set of RSpec/Rspec on Rails in > > plugins (same revision) > > Preferrably a tagged revision. Try 0.8RC1. > > > > Then use the spec command under plugins: vendor/plugins/rspec/bin/spec > > > > Aslak > > > >> > >> Scott > >> > >> _______________________________________________ > >> rspec-users mailing list > >> rspec-users at rubyforge.org > >> http://rubyforge.org/mailman/listinfo/rspec-users > >> > > _______________________________________________ > > rspec-users mailing list > > rspec-users at rubyforge.org > > http://rubyforge.org/mailman/listinfo/rspec-users > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
David Chelimsky
2007-Feb-27 20:18 UTC
[rspec-users] Using a subversion repository to spec in a rails app
On 2/27/07, David Chelimsky <dchelimsky at gmail.com> wrote:> On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: > > > > What is the svn path for the tagged RC1 revision? > > svn://rubyforge.net/var/svn/rspec/tags/REL_0_8_0_RC1More specifically: svn://rubyforge.net/var/svn/rspec/tags/REL_0_8_0_RC1/rspec svn://rubyforge.net/var/svn/rspec/tags/REL_0_8_0_RC1/rspec_on_rails/vendor/plugins/rspec_on_rails> > > > > Scott > > > > > > > > On Feb 27, 2007, at 7:47 AM, aslak hellesoy wrote: > > > > > On 2/27/07, Scott Taylor <mailing_lists at railsnewbie.com> wrote: > > >> > > >> Is it a bad practice to use a subversion repository to the trunk of > > >> rspec and rspec_on_rails? Or rather, is it doomed to fail, since my > > >> gem will always be out of date? > > >> > > >> I know I can''t use spec, installed from gem,s if I have the latest > > >> revision of rspec and rspec_on_rails checked into my plugins > > >> directory. But I should still be able to use it with the --drb > > >> option, correct? > > >> > > >> I''m having a new set of bugs with my repository update to Revision > > >> 1539... > > >> > > > > > > I recommend installing a compatible set of RSpec/Rspec on Rails in > > > plugins (same revision) > > > Preferrably a tagged revision. Try 0.8RC1. > > > > > > Then use the spec command under plugins: vendor/plugins/rspec/bin/spec > > > > > > Aslak > > > > > >> > > >> Scott > > >> > > >> _______________________________________________ > > >> rspec-users mailing list > > >> rspec-users at rubyforge.org > > >> http://rubyforge.org/mailman/listinfo/rspec-users > > >> > > > _______________________________________________ > > > rspec-users mailing list > > > rspec-users at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/rspec-users > > > > _______________________________________________ > > rspec-users mailing list > > rspec-users at rubyforge.org > > http://rubyforge.org/mailman/listinfo/rspec-users > > >