Sha256: 42f8d07edf882422b3c0315fff23e4781c36a9694770f85239561bbbf559683c
Contents?: true
Size: 465 Bytes
Versions: 5
Compression:
Stored size: 465 Bytes
Contents
#!/usr/bin/env ruby guard 'rspec', :cli => '--fail-fast --tag ~@slow:true' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end guard 'bundler' do watch('Gemfile') watch('soloist.gemspec') end guard 'shell' do 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 | Guardfile |
soloist-1.0.2 | Guardfile |
soloist-1.0.1 | Guardfile |
soloist-rvm-0.0.1 | Guardfile |
soloist-1.0.0 | Guardfile |