summaryrefslogtreecommitdiff
path: root/ohai.gemspec
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-08-10 14:42:45 -0700
committerTim Smith <tsmith@chef.io>2016-08-10 14:42:45 -0700
commit53c4acc3c4a4b4440967878dbf82ea5e9ea08741 (patch)
tree8ea7b97a3af01493f6c7847ad4cff65b6465bbfa /ohai.gemspec
parentd2e2e1af95415f4ed826d972579494991ea28dca (diff)
downloadohai-53c4acc3c4a4b4440967878dbf82ea5e9ea08741.tar.gz
Constrain rack to 1.0
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'ohai.gemspec')
-rw-r--r--ohai.gemspec4
1 files changed, 4 insertions, 0 deletions
diff --git a/ohai.gemspec b/ohai.gemspec
index ceb3d163..3d8148c5 100644
--- a/ohai.gemspec
+++ b/ohai.gemspec
@@ -43,6 +43,10 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec_junit_formatter"
s.add_development_dependency "github_changelog_generator", "1.13.1"
+ # github_changelog_generator -> github-api -> oauth2 -> rack
+ # rack being unconstrained breaks Ruby 2.1 instals
+ s.add_development_dependency "rack", "~> 1.0"
+
s.bindir = "bin"
s.executables = %w{ohai}