Sha256: a18dd984b76fc8751e472a9c4cf5562e7742d28c46373e8301cb3b2be5721c46

Contents?: true

Size: 455 Bytes

Versions: 7

Compression:

Stored size: 455 Bytes

Contents

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

notification :terminal_notifier
notification :tmux, :display_message => true


guard 'bundler' do
  watch('Gemfile')
  # Uncomment next line if Gemfile contain `gemspec' command
  # watch(/^.+\.gemspec/)
end


guard :rspec do
  watch(%r{^spec/pio/.+_spec\.rb$})
  watch(%r{^lib/pio/(.+)\.rb$})     { |m| "spec/pio/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pio-0.2.7 Guardfile
pio-0.2.6 Guardfile
pio-0.2.5 Guardfile
pio-0.2.4 Guardfile
pio-0.2.3 Guardfile
pio-0.2.2 Guardfile
pio-0.2.1 Guardfile