aboutsummaryrefslogtreecommitdiffstats
path: root/Guardfile
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2013-07-16 14:51:40 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2013-07-16 14:51:40 +0300
commit356373b2154f4a062e4867910590f1c0358803f7 (patch)
tree3724f3a76c784d549f653789dd57433725b9c85f /Guardfile
parent43afc54ade8b25d4bab2a6bd9ac19fb546232dfe (diff)
downloadrefinerycms-blog-356373b2154f4a062e4867910590f1c0358803f7.tar.gz
refinerycms-blog-356373b2154f4a062e4867910590f1c0358803f7.tar.bz2
refinerycms-blog-356373b2154f4a062e4867910590f1c0358803f7.zip
Apply chnages recently made in main refinerycms repo.
* Remove notifier gems * Remove Guardfile * Add ability to specify additional gems when developing in .gemfile
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Guardfile b/Guardfile
deleted file mode 100644
index b8bb85a..0000000
--- a/Guardfile
+++ /dev/null
@@ -1,10 +0,0 @@
-guard 'rspec', :version => 2, :cli => "--color" 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" }
- watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/controllers/#{m[1]}_#{m[2]}_spec.rb", "spec/features/#{m[1]}_spec.rb"] }
- watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
- watch('spec/spec_helper.rb') { "spec" }
- # Capybara feature specs
- watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
-end