Re: [rspec-users] autospec not detecting new files

2009-11-19 Thread Stephen Eley
On Fri, Nov 20, 2009 at 1:02 AM, Andy Koch wrote: > > I have a project where autospec is not adding new files to it's test > list. Autotest (which autospec is really just a wrapper around) builds its file list when it initializes. After that its looping is pretty specific. If you want to refres

[rspec-users] autospec not detecting new files

2009-11-19 Thread Andy Koch
Hi, I have a project where autospec is not adding new files to it's test list. When I run 'rake spec' it finds and runs the spec files. Wondering if there is a cache file that autospec is using? I've searched for an answer, while I've learned lots of interesting other tidbits - no answer to wha

Re: [rspec-users] Gemspec development dependencies seems to be messed up

2009-11-19 Thread David Chelimsky
On Wed, Nov 18, 2009 at 7:05 AM, grimen wrote: > $ sudo gem install rspec-rails --development > Password: > ERROR: Error installing rspec-rails: >rspec requires cucumber (>= 0.3, development) > > > ...and when installed cucumber manually, it ends up with weird stuff. > Can you be more s

Re: [rspec-users] rspec-rails gem double quoting (My)SQL?

2009-11-19 Thread David Nawara
The problem goes away when I ditch the gems and grab the plugins off github. (The archive is too large, or I'd upload that version.) Now I just have to get cucumber working with plugins, which is the reason I switched to gems in the first place… -- Posted via http://www.ruby-forum.com/. ___

Re: [rspec-users] Cucumber and IP PBX testing

2009-11-19 Thread Zach Dennis
On Wed, Nov 18, 2009 at 6:26 PM, Robertico Gonzalez wrote: > Hi, > > I am new to Cucumber.  I am a test engineer for an IP PBX.  Has anyone > tried to use Cucumber to test such application?  Some of the actions > that I need to perform are: > > Given: > a) Configure parameters on a web site to cha

Re: [rspec-users] Running simple rspec, no output

2009-11-19 Thread David Chelimsky
On Thu, Nov 19, 2009 at 4:11 AM, bqaanne wrote: > > Hi, > > I am very new to Ruby and Rspec, and found a simple tutorial online about > rspec. > > It involves two files: > bowling.rb and bowling_spec.rb > > # bowling_spec.rb > require'rubygems' > require 'spec' > require 'bowling' > > describe Bo

[rspec-users] Running simple rspec, no output

2009-11-19 Thread bqaanne
Hi, I am very new to Ruby and Rspec, and found a simple tutorial online about rspec. It involves two files: bowling.rb and bowling_spec.rb # bowling_spec.rb require'rubygems' require 'spec' require 'bowling' describe Bowling do it "should score 0 for gutter game" do bowling = Bowling.new

[rspec-users] Gemspec development dependencies seems to be messed up

2009-11-19 Thread grimen
$ sudo gem install rspec-rails --development Password: ERROR: Error installing rspec-rails: rspec requires cucumber (>= 0.3, development) ...and when installed cucumber manually, it ends up with weird stuff. Is this RSpec issue or a RubyGems issue? ___