Skip to content

Commit

Permalink
⚙️ Adding derivative-rodeo gem 🤠
Browse files Browse the repository at this point in the history
Why change `< 4.0` to `< 4`?  I was encountering issues where bundler
was setting the dependency to `hyrax v4.0.0.rc3`.  This change remedied
that.

Why remove `~> 3.1` from `rspec-rails` dependency?  I was getting issues
with what version of Rails was required.  By removing this hard
dependency, we're able to let these gems sort things out.

Related to:

- https://github.com/scientist-softserv/adventist-dl/issues/330
  • Loading branch information
jeremyf committed May 25, 2023
1 parent 8fdf56e commit e5143bd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions iiif_print.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ SUMMARY
spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.add_dependency 'blacklight_iiif_search', '~> 1.0'
spec.add_dependency 'derivative-rodeo'
spec.add_dependency 'dry-monads', '~> 1.4.0'
spec.add_dependency 'hyrax', '>= 2.5', '< 4.0'
spec.add_dependency 'hyrax', '>= 2.5', '< 4'
spec.add_dependency 'reform-rails', '0.2.3'
spec.add_dependency 'nokogiri', '>=1.13.2'
spec.add_dependency 'rails', '~> 5.0'
Expand All @@ -35,9 +36,10 @@ SUMMARY
spec.add_development_dependency 'engine_cart', '~> 2.2'
spec.add_development_dependency "factory_bot", '~> 4.4'
spec.add_development_dependency 'fcrepo_wrapper', '~> 0.5', '>= 0.5.1'
# TODO: We want to remove dependency on this
spec.add_development_dependency 'newspaper_works_fixtures', '~> 0.3', '>=0.3.1'
spec.add_development_dependency 'rails-controller-testing', '~> 1'
spec.add_development_dependency 'rspec-rails', '~> 3.1'
spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'rspec-activemodel-mocks'
spec.add_development_dependency 'shoulda-matchers', '~> 3.1'
spec.add_development_dependency 'solr_wrapper', '>= 1.1', '< 3.0'
Expand Down

0 comments on commit e5143bd

Please sign in to comment.