Re: [rspec-users] Bundler and Setting up RSpec

2011-04-03 Thread David Chelimsky
On Mar 28, 2011, at 9:59 AM, Stuart Corbishley wrote: > Hi there, > > Does RSpec acknowledge bundler, and use the groups? RSpec doesn't really know anything about Bundler's internals, but the rake task does look for a Gemfile and shells out to 'bundler exec rspec' if it sees one unless you con

[rspec-users] Bundler and Setting up RSpec

2011-04-02 Thread Stuart Corbishley
Hi there, Does RSpec acknowledge bundler, and use the groups? Also is there any good example of what is required for a function spec rake task... I've had issues trying to create my own. require 'rubygems' require 'bundler' Bundler.setup(:default, :test) begin require 'rspec/core/rake_task'