Sha256: 5908e637d0e1a888f1c68d9cac1029136dce51ff002b4bb2a59aef243cbfdbb5
Contents?: true
Size: 547 Bytes
Versions: 6
Compression:
Stored size: 547 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/ruby_odata/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end guard 'cucumber', :all_after_pass => false, :all_on_start => false do watch(%r{^features/.+\.feature$}) watch(%r{^features/support/.+$}) { 'features' } watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' } end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
ruby_odata-0.1.6 | Guardfile |
ruby_odata-0.1.5 | Guardfile |
ruby_odata-0.1.4 | Guardfile |
ruby_odata-0.1.3 | Guardfile |
ruby_odata-0.1.2 | Guardfile |
ruby_odata-0.1.1 | Guardfile |