Sha256: 3c57da484632fa0c0a38aab49d13d7d3d784461f21e0cbd872ed558e4d18b83d

Contents?: true

Size: 438 Bytes

Versions: 5

Compression:

Stored size: 438 Bytes

Contents

#!/usr/bin/env ruby

guard 'bundler' do
  watch('../Gemfile')
  watch('../soloist.gemspec')
end

guard 'shell' do
  watch('soloistrc') { system("../bin/soloist -r 192.168.6.66") }
  watch(%r{^cookbooks/(.+)\.rb$}) { system("unset RUBYOPT; bundle exec ../bin/soloist -r 192.168.6.66") }
  watch('Vagrantfile') { system("unset RUBYOPT; vagrant provision") }
  watch('script/bootstrap.sh') { system("unset RUBYOPT; vagrant provision") }
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
soloist-1.0.3 examples/Guardfile
soloist-1.0.2 examples/Guardfile
soloist-1.0.1 examples/Guardfile
soloist-rvm-0.0.1 examples/Guardfile
soloist-1.0.0 examples/Guardfile