Sha256: 191190ba986e411b92654b7c1291b99edfc8c08daa4c3b467ad57151c9a91041

Contents?: true

Size: 403 Bytes

Versions: 39

Compression:

Stored size: 403 Bytes

Contents

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


guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard 'rspec', cmd: "bundle exec rspec", all_on_start: true, failed_mode: :focus do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { "spec" }
  watch('spec/spec_helper.rb')  { "spec" }
  watch(%r{^spec/(support|shared).*\.rb$}) { "spec" }
end

Version data entries

39 entries across 39 versions & 2 rubygems

Version Path
ey-core-3.6.0.autoscaling1 Guardfile
ey-core-3.6.4 Guardfile
ey-core-3.6.3 Guardfile
ey-core-3.6.1 Guardfile
groove-ey-core-3.6.3 Guardfile
groove-ey-core-3.6.2 Guardfile
groove-ey-core-3.6.1 Guardfile
ey-core-3.5.0 Guardfile
ey-core-3.4.4 Guardfile
ey-core-3.4.2 Guardfile
ey-core-3.4.1 Guardfile
ey-core-3.4.0 Guardfile
ey-core-3.3.1 Guardfile
ey-core-3.3.0 Guardfile
ey-core-3.2.6 Guardfile
ey-core-3.2.5 Guardfile
ey-core-3.2.4 Guardfile
ey-core-3.2.3 Guardfile
ey-core-3.2.2 Guardfile
ey-core-3.2.1 Guardfile