Sha256: d9fba27faa1f329e034dee4efb3f6b14931698f9237a8a105ad58679457ecb4e

Contents?: true

Size: 455 Bytes

Versions: 22

Compression:

Stored size: 455 Bytes

Contents

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

guard 'rspec', :cli => '-d -c -f doc', :version => 2, :notification => false do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^lib/amazon_seller_central/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^spec/support/(.+)\.rb$})                  { "spec" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
amazon_seller_central-0.3.2 Guardfile
amazon_seller_central-0.3.1 Guardfile
amazon_seller_central-0.3.0 Guardfile
amazon_seller_central-0.2.16 Guardfile
amazon_seller_central-0.2.15 Guardfile
amazon_seller_central-0.2.14 Guardfile
amazon_seller_central-0.2.13 Guardfile
amazon_seller_central-0.2.12 Guardfile
amazon_seller_central-0.2.11 Guardfile
amazon_seller_central-0.2.10 Guardfile
amazon_seller_central-0.2.9 Guardfile
amazon_seller_central-0.2.8 Guardfile
amazon_seller_central-0.2.7 Guardfile
amazon_seller_central-0.2.6 Guardfile
amazon_seller_central-0.2.5 Guardfile
amazon_seller_central-0.2.4 Guardfile
amazon_seller_central-0.2.3 Guardfile
amazon_seller_central-0.2.2 Guardfile
amazon_seller_central-0.2.1 Guardfile
amazon_seller_central-0.2.0 Guardfile