summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2017-01-18 18:38:10 -0500
committerAustin Ziegler <austin@zieglers.ca>2017-01-18 18:38:10 -0500
commitac5c57c5349b835c2f77e671f607a60e71ec82f1 (patch)
tree887e503f7d9e30e4a652e1051efdc6e02cee9cfa
parent972ae416205ea8dd630d9cc32ab18aae2c577b14 (diff)
downloaddiff-lcs-ac5c57c5349b835c2f77e671f607a60e71ec82f1.tar.gz
Fix Ruby 1.8 build issues
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index fa1f60f..b5a72e4 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,7 +6,8 @@
source "https://rubygems.org/"
if RUBY_VERSION < '1.9'
- gem 'rdoc', '< 4.0'
+ gem 'rdoc', '< 4'
+ gem 'rake', '< 11'
elsif RUBY_VERSION >= '2.0'
if RUBY_ENGINE == 'ruby'
gem 'simplecov', '~> 0.7'