aboutsummaryrefslogtreecommitdiffstats
path: root/Guardfile
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-05-08 16:24:40 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-05-08 16:24:40 +0900
commit71d6dd10857a3d3ea3e58d5debff98d2426775ee (patch)
treecc9f007895e25f457c36b0eb3647a0c0c38c8b89 /Guardfile
parent023d9d1d1018c03896914f67c9d87846c3ce081b (diff)
parent5337a2165365b1fd9d49cbd791b0b7960c78647b (diff)
downloadplum-71d6dd10857a3d3ea3e58d5debff98d2426775ee.tar.gz
Merge branch 'topic/fix-coding-style'
* topic/fix-coding-style: style: use $! if possible style: prefer '{ |x|' to '{|x|' readme: add newlines gitignore: remove unneeded things
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index a0b76d7..9e48349 100644
--- a/Guardfile
+++ b/Guardfile
@@ -3,7 +3,7 @@
guard :minitest, env: { "SKIP_COVERAGE" => true } do
# with Minitest::Unit
watch(%r{^test/(.*)\/?test_(.*)\.rb$})
- watch(%r{^lib/(.*/)?([^/]+)\.rb$}) {|m| ["test/#{m[1]}test_#{m[2]}.rb", "test/#{m[1]}#{m[2]}"] }
+ watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| ["test/#{m[1]}test_#{m[2]}.rb", "test/#{m[1]}#{m[2]}"] }
watch(%r{^test/test_helper\.rb$}) { "test" }
watch(%r{^test/utils/.*\.rb}) { "test" }
end