diff options
author | Jamie Winsor <jamie@enmasse.com> | 2011-09-02 13:34:06 -0700 |
---|---|---|
committer | Jamie Winsor <jamie@enmasse.com> | 2011-09-02 13:35:25 -0700 |
commit | fc68f22858fc485b99836d6b5ce254c67cdabe50 (patch) | |
tree | 21122ece4efa97bd3025071344fb1a582ac574d1 /Guardfile | |
parent | 177927497131abc1e860e381e0139cab0a8c60d6 (diff) | |
download | refinerycms-blog-fc68f22858fc485b99836d6b5ce254c67cdabe50.tar.gz refinerycms-blog-fc68f22858fc485b99836d6b5ce254c67cdabe50.tar.bz2 refinerycms-blog-fc68f22858fc485b99836d6b5ce254c67cdabe50.zip |
update and import refinerycms migrations and seeds
update Guardfile, spec_helper, and support files to match those generated by refinerycms-testing
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -1,12 +1,4 @@ -# A sample Guardfile -# More info at https://github.com/guard/guard#readme - -guard 'rspec', :version => 2 do - watch(%r{^spec/.+_spec\.rb$}) - watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } - watch('spec/spec_helper.rb') { "spec" } - - # Rails example +guard 'rspec', :version => 2, :cli => "--format Fuubar --color --drb" do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } |