Skip to content

Commit

Permalink
Gemspec/AddRuntimeDependency
Browse files Browse the repository at this point in the history
pgwillia committed Oct 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent da9c573 commit 1d74e88
Showing 2 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -14,6 +14,9 @@ and releases in PushmiPullyu adheres to [Semantic Versioning](https://semver.org
### Fixed
- Use `File.open` with a block for simple exception handling and ensuring files are closed [#475](https://github.com/ualbertalib/pushmi_pullyu/issues/475)

### Chores
- Use add_dependency instead of add_runtime_dependency. [PR#473](https://github.com/ualbertalib/pushmi_pullyu/pull/473)

## [2.1.3]
- Refresh authentication token after it expires [#311](https://github.com/ualbertalib/pushmi_pullyu/issues/311)

24 changes: 12 additions & 12 deletions pushmi_pullyu.gemspec
Original file line number Diff line number Diff line change
@@ -21,18 +21,18 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.7'

spec.add_runtime_dependency 'activesupport', '>= 5', '< 8'
spec.add_runtime_dependency 'bagit', '~> 0.4'
spec.add_runtime_dependency 'connection_pool', '~> 2.2'
spec.add_runtime_dependency 'daemons', '~> 1.2', '>= 1.2.4'
spec.add_runtime_dependency 'minitar', '>= 0.7', '< 2.0'
spec.add_runtime_dependency 'openstack', '~> 3.3', '>= 3.3.10'
spec.add_runtime_dependency 'rdf', '>= 1.99', '< 4.0'
spec.add_runtime_dependency 'rdf-n3', '>= 1.99', '< 4.0'
spec.add_runtime_dependency 'redis', '>= 3.3', '< 6.0'
spec.add_runtime_dependency 'rest-client', '>= 1.8', '< 3.0'
spec.add_runtime_dependency 'rollbar', '>= 2.18', '< 4.0'
spec.add_runtime_dependency 'uuid', '~> 2.3.9'
spec.add_dependency 'activesupport', '>= 5', '< 8'
spec.add_dependency 'bagit', '~> 0.4'
spec.add_dependency 'connection_pool', '~> 2.2'
spec.add_dependency 'daemons', '~> 1.2', '>= 1.2.4'
spec.add_dependency 'minitar', '>= 0.7', '< 2.0'
spec.add_dependency 'openstack', '~> 3.3', '>= 3.3.10'
spec.add_dependency 'rdf', '>= 1.99', '< 4.0'
spec.add_dependency 'rdf-n3', '>= 1.99', '< 4.0'
spec.add_dependency 'redis', '>= 3.3', '< 6.0'
spec.add_dependency 'rest-client', '>= 1.8', '< 3.0'
spec.add_dependency 'rollbar', '>= 2.18', '< 4.0'
spec.add_dependency 'uuid', '~> 2.3.9'

spec.metadata = {
'rubygems_mfa_required' => 'true'

0 comments on commit 1d74e88

Please sign in to comment.