Skip to content

Commit

Permalink
remove restrictions on activesupport (#86)
Browse files Browse the repository at this point in the history
* remove restrictions on activesupport
  • Loading branch information
a-bougouin authored Jun 30, 2017
1 parent d13e3d0 commit 0be3e85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in wovn.gemspec
if RUBY_VERSION < '2.2.2'
gem 'activesupport', '< 5.0.0'
end
gemspec
6 changes: 1 addition & 5 deletions wovnrb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "nokogumbo", ">= 1.3.0"
spec.add_dependency "nokogiri", "<= 1.8"
if RUBY_VERSION < "2.2.2"
spec.add_dependency "activesupport", '< 5.0.0'
else
spec.add_dependency "activesupport"
end
spec.add_dependency "activesupport"
spec.add_dependency "lz4-ruby"

spec.add_development_dependency "bundler", "~> 1.7"
Expand Down

0 comments on commit 0be3e85

Please sign in to comment.