Sha256: c666d779a03eb54162b4daf1e51628808c2d22e09d8d554858a761a43eae6eef

Contents?: true

Size: 607 Bytes

Versions: 16

Compression:

Stored size: 607 Bytes

Contents

notification :growl, sticky: false, priority: 0
logger level: :info
clearing :on

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

# NOTE: This Guardfile only watches unit specs.
# Automatically running the integration specs would repeatedly launch the
# simulator, stealing screen focus and making everyone cranky.
guard :rspec, cmd: 'bundle exec rspec', spec_paths: ['spec/lib'] do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/run_loop/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec/lib' }
  #watch('spec/resources.rb')  { 'spec/lib' }
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
briar-2.0.5 Guardfile
briar-2.0.4 Guardfile
briar-2.0.3 Guardfile
briar-2.0.2 Guardfile
briar-2.0.1 Guardfile
briar-2.0.0 Guardfile
briar-1.4.2 Guardfile
briar-1.4.1 Guardfile
briar-1.3.2 Guardfile
briar-1.3.1 Guardfile
briar-1.3.0 Guardfile
briar-1.2.2 Guardfile
briar-1.2.1 Guardfile
briar-1.2.0 Guardfile
briar-1.1.9 Guardfile
briar-1.1.8 Guardfile