Skip to content

Commit

Permalink
Limit support to Rails 5.2; add support for ldp 1.0
Browse files Browse the repository at this point in the history
Rails can break on minor changes. Supporting `< 6` is optimistic and leads to
version problems.

`ldp` has recently released 1.0.0; supporting this will help adopters ensure
stability.
  • Loading branch information
Tom Johnson committed Sep 26, 2018
1 parent b6c8dd3 commit debc1c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions active-fedora.gemspec
Expand Up @@ -16,11 +16,11 @@ Gem::Specification.new do |s|

s.add_dependency 'rsolr', '>= 1.1.2', '< 3'
s.add_dependency 'solrizer', '>= 3.4', '< 5'
s.add_dependency "activesupport", '>= 4.2.4', '< 6'
s.add_dependency "activemodel", '>= 4.2.10', '< 6'
s.add_dependency "activesupport", '>= 4.2.4', '< 5.3'
s.add_dependency "activemodel", '>= 4.2.10', '< 5.3'
s.add_dependency "active-triples", '>= 0.11.0', '< 2.0.0'
s.add_dependency "deprecation"
s.add_dependency "ldp", '~> 0.7.0'
s.add_dependency "ldp", '>= 0.7.0', '< 2'
s.add_dependency "ruby-progressbar", '~> 1.0'
s.add_dependency 'faraday', '~> 0.12'
s.add_dependency 'faraday-encoding', '0.0.4'
Expand Down

0 comments on commit debc1c9

Please sign in to comment.