Sha256: 1bd241bb8077d4abb149ee5c2df1789f5ba36590f22dd4016f10271e368d9e21
Contents?: true
Size: 675 Bytes
Versions: 7
Compression:
Stored size: 675 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') # Uncomment next line if Gemfile contain `gemspec' command # watch(/^.+\.gemspec/) end guard 'rspec', :version => 2, :cli => "--color --format nested --drb", :all_on_start => false, :all_after_pass => false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^lib/api_resource/(.+)\.rb$}) {|m| "spec/lib/#{m[1]}_spec.rb"} watch('spec/spec_helper.rb') { "spec/" } end #guard 'spork' do # watch('api_resource.gemspec') # watch('Gemfile.lock') # watch('spec/spec_helper.rb') { :rspec } #end
Version data entries
7 entries across 7 versions & 1 rubygems