summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2022-07-05 15:43:30 -0400
committerGitHub <noreply@github.com>2022-07-05 15:43:30 -0400
commitcab33a91e2894558b962b4b2236a213c6d63c54e (patch)
treefc14bc4c8a44e20026e1252a8cd435907d412ee1 /Gemfile
parent3062997fbbe19cb6099a65a5dbcd0aba7b9b17c7 (diff)
parent0270cb87e09dd444ad6822a777bb7999fd6f6e85 (diff)
downloaddiff-lcs-main.tar.gz
Merge pull request #81 from halostatue/switch-to-standardrb-formattingHEADmain
Switch to standardrb formatting
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile24
1 files changed, 14 insertions, 10 deletions
diff --git a/Gemfile b/Gemfile
index 7b9f817..2840096 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,19 +3,23 @@
# NOTE: This file is present to keep Travis CI happy. Edits to it will not
# be accepted.
-source 'https://rubygems.org/'
+source "https://rubygems.org/"
-if RUBY_VERSION < '1.9'
- gem 'hoe', '~> 3.20'
- gem 'rake', '< 11'
- gem 'rdoc', '< 4'
+if RUBY_VERSION < "1.9"
+ gem "hoe", "~> 3.20"
+ gem "rake", "< 11"
+ gem "rdoc", "< 4"
- gem 'ruby-debug'
-elsif RUBY_VERSION >= '2.0'
- if RUBY_ENGINE == 'ruby'
- gem 'simplecov', '~> 0.18'
+ gem "ruby-debug"
+end
+
+if RUBY_VERSION >= "2.0"
+ gem "standardrb"
+ gem "fasterer"
- gem 'byebug'
+ if RUBY_ENGINE == "ruby"
+ gem "simplecov", "~> 0.18"
+ gem "byebug"
end
end