Sha256: 7bd811ae3a106b12d7858ba188df3b76e6065c73fe9a10a45115290c11569637
Contents?: true
Size: 643 Bytes
Versions: 4
Compression:
Stored size: 643 Bytes
Contents
guard :rspec do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/support/(.+)\.rb$}) { 'spec' } watch('spec/spec_helper.rb') { 'spec' } watch(%r{^lib/rnfse/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/rnfse/api/(.+)\.rb$}) { |m| "spec/api/#{m[1]}_spec.rb" } watch(%r{^lib/rnfse/api/(.+)/(.+)\.rb$}) { |m| "spec/api/#{m[1]}/#{m[2]}_spec.rb" } watch(%r{^lib/rnfse/xml_builder/(.+)/(.+)\.rb$}) { |m| "spec/xml_builder/#{m[1]}/#{m[2]}_spec.rb" } watch(%r{^lib/rnfse/api/(.+)/(.+)\.json$}) { |m| "spec/api/#{m[1]}/#{m[2]}_json_spec.rb" } end guard :bundler do watch(/^.+\.gemspec/) watch(/^Gemfile/) end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rnfse-0.3.0 | Guardfile |
rnfse-0.0.3 | Guardfile |
rnfse-0.0.2 | Guardfile |
rnfse-0.0.1 | Guardfile |