Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-23 Thread Scott Taylor
On Nov 23, 2009, at 11:12 PM, David Chelimsky wrote: > > > On Mon, Nov 23, 2009 at 9:36 PM, Scott Taylor wrote: > > On Nov 23, 2009, at 9:35 PM, David Chelimsky wrote: > >> On Fri, Nov 20, 2009 at 9:06 PM, Bogdan Dumitru wrote: >> The syntax for use_fakefs changed in version 0.2.1 and the f

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-23 Thread David Chelimsky
On Mon, Nov 23, 2009 at 9:36 PM, Scott Taylor wrote: > > On Nov 23, 2009, at 9:35 PM, David Chelimsky wrote: > > On Fri, Nov 20, 2009 at 9:06 PM, Bogdan Dumitru wrote: > >> The syntax for use_fakefs changed in version 0.2.1 and the fixtures >> for rspec are generating errors, but it can be solved

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-23 Thread Scott Taylor
On Nov 23, 2009, at 9:35 PM, David Chelimsky wrote: > On Fri, Nov 20, 2009 at 9:06 PM, Bogdan Dumitru wrote: > The syntax for use_fakefs changed in version 0.2.1 and the fixtures > for rspec are generating errors, but it can be solved easily. > Have to change ... > describe "smth" do > extend

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-23 Thread David Chelimsky
On Fri, Nov 20, 2009 at 9:06 PM, Bogdan Dumitru wrote: > The syntax for use_fakefs changed in version 0.2.1 and the fixtures > for rspec are generating errors, but it can be solved easily. > Have to change ... > describe "smth" do > extend FakeFS::SpecHelpers > use_fakefs > ... > end > To..

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-21 Thread Bogdan Dumitru
The syntax for use_fakefs changed in version 0.2.1 and the fixtures for rspec are generating errors, but it can be solved easily. Have to change ... describe "smth" do extend FakeFS::SpecHelpers use_fakefs ... end To... extend FakeFS::SpecHelpers use_fakefs describe "smth" do ... end As i

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-08 Thread David Chelimsky
On Sun, Nov 8, 2009 at 2:35 AM, Conrad Taylor wrote: > David, I'm still seeing the issue. Thus, here's a transcript of my > activity: > > http://pastie.org/688639 $ gem which fakefs (checking gem bmabey-fakefs-0.1.1.1 for fakefs) /Users/david/.rvm/gems/ruby/1.9.1/gems/bmabey-fakefs-0.1.1.1/lib

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-08 Thread Conrad Taylor
David, I'm still seeing the issue. Thus, here's a transcript of my activity: http://pastie.org/688639 -Conrad On Nov 4, 2:28 pm, David Chelimsky wrote: > On Tue, Nov 3, 2009 at 7:25 AM, Conrad Taylor wrote: > > Hi, 'rake spec' failed to run on Ruby 1.9.1p243 and RSpec 1.2.9. > > Hi Conrad, >

Re: [rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-04 Thread David Chelimsky
On Tue, Nov 3, 2009 at 7:25 AM, Conrad Taylor wrote: > Hi, 'rake spec' failed to run on Ruby 1.9.1p243 and RSpec 1.2.9. Hi Conrad, If this was a problem in the gem, it is now fixed: $ rvm 1.9.1 $ which ruby /Users/david/.rvm/ruby-1.9.1-p243/bin/ruby $ rake spec ... 1522 examples, 0 failures,

[rspec-users] Error executing specs using Ruby 1.9.1p243 and RSpec 1.2.9

2009-11-04 Thread Conrad Taylor
Hi, 'rake spec' failed to run on Ruby 1.9.1p243 and RSpec 1.2.9. I'm getting the following error message when I run the specs: /opt/local/lib/ruby/gems/1.9.1/gems/rspec-1.2.9/spec/spec/runner/ option_parser_spec.rb:21:in `block (2 levels) in ': wrong number of arguments (0 for 1) (ArgumentError)