Sha256: d3a36b864a4d4dcb4de29c81c1e1e733e2df7e02e7eadf1fe14b0e810e7615db

Contents?: true

Size: 504 Bytes

Versions: 41

Compression:

Stored size: 504 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

# rubies = %w[
#   1.8.6
#   1.8.7
#   1.9.2
#   ree
#   jruby
# ].map { |ruby| "#{ruby}@webmock" }

rspec_options = {
  # :rvm          => rubies,
  :all_on_start => false,
  :notification => false,
  :cli          => '--color',
  :version      => 2
}

guard 'rspec', rspec_options do
  watch(%r{^spec/.+_spec\.rb})
  watch(%r{^lib/(.+)\.rb})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { "spec" }
end

Version data entries

41 entries across 41 versions & 3 rubygems

Version Path
solidus_backend-1.0.0.pre3 vendor/bundle/gems/webmock-1.8.11/Guardfile
solidus_backend-1.0.0.pre2 vendor/bundle/gems/webmock-1.8.11/Guardfile
solidus_backend-1.0.0.pre vendor/bundle/gems/webmock-1.8.11/Guardfile
webmock-1.14.0 Guardfile
webmock-1.13.0 Guardfile
webmock-1.12.3 Guardfile
webmock-1.12.2 Guardfile
webmock-1.12.1 Guardfile
webmock-1.12.0 Guardfile
webmock-1.11.0 Guardfile
webmock-1.10.2 Guardfile
webmock-1.10.1 Guardfile
webmock-1.10.0 Guardfile
webmock-1.9.3 Guardfile
webmock-1.9.2 Guardfile
webmock-1.9.1 Guardfile
simple-client-0.0.3 vendor/bundle/ruby/1.9.1/gems/webmock-1.8.8/Guardfile
webmock-1.9.0 Guardfile
webmock-1.8.11 Guardfile
webmock-1.8.10 Guardfile