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