Sha256: 1f40d7e67ac372e2874198c4d1bad2674c935b958674e32b8e1e2439174b242b
Contents?: true
Size: 317 Bytes
Versions: 4
Compression:
Stored size: 317 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'motion' 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 |
---|---|
rm-wsse-0.0.4 | Guardfile |
rm-wsse-0.0.3 | Guardfile |
rm-wsse-0.0.2 | Guardfile |
rm-wsse-0.0.1 | Guardfile |