summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2021-12-23 10:54:52 -0500
committerAustin Ziegler <austin@zieglers.ca>2022-07-04 20:26:10 -0400
commitf5781c06b2c297caf58c97824c77f557831094a7 (patch)
treefbb662bcb068c52bd20604b32b83e8c73da2d8c5 /Rakefile
parent089f932537a540af9c27dd03caf30eff6b4a0306 (diff)
downloaddiff-lcs-f5781c06b2c297caf58c97824c77f557831094a7.tar.gz
ignore Layout/heredocIndentation due to old Ruby
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 3924134..f5c4f80 100644
--- a/Rakefile
+++ b/Rakefile
@@ -105,6 +105,7 @@ if RUBY_VERSION >= "2.0" && RUBY_ENGINE == "ruby"
end
task :ruby18 do
+ # standard:disable Layout/HeredocIndentation
puts <<-MESSAGE
You are starting a barebones Ruby 1.8 docker environment. You will need to
do the following:
@@ -117,5 +118,6 @@ do the following:
Don't forget to restore your Gemfile.lock after testing.
MESSAGE
+ # standard:enable Layout/HeredocIndentation
sh "docker run -it --rm -v #{Dir.pwd}:/root/diff-lcs bellbind/docker-ruby18-rails2 bash -l"
end