Sha256: a99781dea48c593ccac0b82b57176f7bbdd223cbc3de0899dda9156cdb515ec8
Contents?: true
Size: 385 Bytes
Versions: 4
Compression:
Stored size: 385 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'motion', :env => {:output => 'colored_spec_dox'}, :all_after_pass => false do watch(%r{^spec/.+_spec\.rb$}) # RubyMotion App example watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } # RubyMotion gem example watch(%r{^lib/[^/]+/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
status_bar-0.2.3 | Guardfile |
status_bar-0.2.2 | Guardfile |
status_bar-0.2.1 | Guardfile |
status_bar-0.2 | Guardfile |