[rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
I'm trying to install rspec so I can work with the new book chapter. This what the console shows after running "rake install_gem" Successfully built RubyGem Name: rspec Version: 1.2.9.rc1 File: rspec-1.2.9.rc1.gem mv rspec-1.2.9.rc1.gem pkg/rspec-1.2.9.rc1.gem sudo gem install bmabey-fake

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
Thanks so much for the help on this. > [sudo] gem install rspec --prerelease This seemed to install version 1.2.8 not the 1.2.9.rc1 I was looking for. > > if you clone the git rep, just install it w/ the gem command: > > rake gem > [sudo] gem install pkg/rspec-1.2.9.rc1.gem This way did the tric

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
Thanks so much for the help on this. > [sudo] gem install rspec --prerelease This seemed to install version 1.2.8 not the 1.2.9.rc1 I was looking for. > > if you clone the git rep, just install it w/ the gem command: > > rake gem > [sudo] gem install pkg/rspec-1.2.9.rc1.gem This way did the tric

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
Thanks so much for the help on this. > [sudo] gem install rspec --prerelease This seemed to install version 1.2.8 not the 1.2.9.rc1 I was looking for. > > if you clone the git rep, just install it w/ the gem command: > > rake gem > [sudo] gem install pkg/rspec-1.2.9.rc1.gem This way did the tric

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
> What OS and ruby/rubygems version? The --prerelease flag is a fairly > recent addition and may not work everywhere yet. Mac OS X 10.5.8 ruby 1.8.6 (2008-08-11 patchlevel 287) [universal-darwin9.0] gem 1.3.5 ___ rspec-users mailing list rspec-users@ru

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
> And what do you see if you type this: > > gem q -rn rspec --prerelease *** REMOTE GEMS *** ERROR: While executing gem ... (Gem::OperationNotSupportedError) Prereleases not supported on legacy repositories ___ rspec-users mailing list rspec-users@

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
> Well that explains why you're not seeing --prerelease gems. What do > you get from this: > > gem sources *** CURRENT SOURCES *** http://gems.rubyforge.org http://gems.rubyonrails.org http://gems.github.com -This is after I followed Stephen Eley's advice (thanks Stephen) and added github as a s

Re: [rspec-users] bmabey-fakefs Not Found Error when installing rspec 1.2.9.rc1

2009-09-23 Thread DanS
> My guess is that the server at http://gems.rubyonrails.org needs to be > updated. If you don't need that I'd remove it from your source list. > You can always get gems from there with --sourcehttp://gems.rubyforge.org/on > the command line. > > $ gem sources -r  http://gems.rubyonrails.org > $ g

Re: [rspec-users] [rails] undefined method `handling_predicate!'

2010-01-21 Thread DanS
On Jan 20, 7:07 pm, David Chelimsky wrote: > On Wed, Jan 20, 2010 at 12:00 PM, Dan Steinicke > wrote: > > I'm trying to use authlogic and factory_girl with rspec  and I am > > getting an error I don't understand.  Basically I have this failing > > spec: > > > it "should succeed in creating a u

[rspec-users] Can have_selector Match Only Part of an Elements Class String?

2010-03-01 Thread DanS
I would like to find a way to check for the existence of a class on a element in a calendar. The s are the days of the calendar and can have various classes assigned. I want to test if a day has the 'past' class and don't care (in this test) if other classes (weekend, today, etc) are present. S

Re: [rspec-users] Can have_selector Match Only Part of an Elements Class String?

2010-03-01 Thread DanS
On Mar 1, 2:26 pm, David Chelimsky wrote: > On Mon, Mar 1, 2010 at 4:24 PM, DanS wrote: > > I would like to find a way to check for the existence of a class on a > > element in a calendar.  The s are the days of the calendar > > and can have various classes assigned.  I