Skip to content

Commit

Permalink
Updated the Guard file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael van Rooijen committed Oct 22, 2011
1 parent e510914 commit f83147d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
##
# To run the test suite against all 3 rubies: 1.9.2, 1.8.7 and REE, simply run the following command:
# To run the test suite against all 4 rubies: 1.9.3, 1.9.2, 1.8.7 and REE, simply run the following command:
# $ guard start
#
# Be use you are using RVM and have Ruby 1.9.2, 1.8.7 and REE installed as well as all
# Backup's gem dependencies for each of these Ruby intepreters.
# Backup"s gem dependencies for each of these Ruby intepreters.

guard 'rspec',
guard "rspec",
:version => 2,
:rvm => ['1.9.3', '1.9.2', '1.8.7', 'ree'],
:rvm => ["1.9.3", "1.9.2", "1.8.7", "ree"],
:bundler => true,
:cli => '--color --format Fuubar' do
:cli => "--color --format Fuubar" do

watch(%r{^spec/.+_spec\.rb})
watch(%r{^lib/(.+)\.rb}) { 'spec' }
watch('spec/spec_helper.rb') { 'spec' }
watch(%r{^lib/(.+)\.rb}) { "spec" }
watch("spec/spec_helper.rb") { "spec" }
end

0 comments on commit f83147d

Please sign in to comment.