Skip to content

Commit

Permalink
Constrain ruby_dep gem versions to prevent constraints on ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroberts committed Aug 4, 2016
1 parent 6a48d69 commit ca6cc37
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vagrant.gemspec
Expand Up @@ -39,6 +39,12 @@ Gem::Specification.new do |s|
# We lock this down to avoid compilation issues.
s.add_dependency "nokogiri", "= 1.6.7.1"

# NOTE: The ruby_dep gem is an implicit dependency from the listen gem. Later versions
# of the ruby_dep gem impose an aggressive constraint on the required ruby version (>= 2.2.5).
# Explicit constraint is defined to provide required dependency to listen without imposing
# tighter restrictions on valid ruby versions
s.add_dependency "ruby_dep", "<= 1.3.1"

s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.14.0"
s.add_development_dependency "webmock", "~> 1.20"
Expand Down

0 comments on commit ca6cc37

Please sign in to comment.