Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update activesupport requirement from ~> 6.1.0 to >= 6.1, < 7.1 in /peatio-dash #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions peatio-dash/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
peatio-dash (3.1.0)
activesupport (~> 6.1.0)
activesupport (>= 6.1, < 7.1)
better-faraday (~> 2.0.1)
faraday (~> 1.10)
memoist (~> 0.16.0)
Expand All @@ -12,9 +12,9 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.7.2)
activesupport (= 6.1.7.2)
activesupport (6.1.7.2)
activemodel (6.1.7.3)
activesupport (= 6.1.7.3)
activesupport (6.1.7.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand Down Expand Up @@ -103,7 +103,7 @@ GEM
jwt (2.7.0)
memoist (0.16.2)
method_source (1.0.0)
minitest (5.17.0)
minitest (5.18.0)
mocha (1.16.1)
multi_json (1.15.0)
multipart-post (2.3.0)
Expand Down Expand Up @@ -209,6 +209,7 @@ GEM

PLATFORMS
arm64-darwin-21
x86_64-linux

DEPENDENCIES
bundler (~> 2.4.7)
Expand Down
2 changes: 1 addition & 1 deletion peatio-dash/peatio-dash.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "activesupport", "~> 6.1.0"
spec.add_dependency "activesupport", ">= 6.1", "< 7.1"
spec.add_dependency "better-faraday", "~> 2.0.1"
spec.add_dependency "faraday", "~> 1.10"
spec.add_dependency "memoist", "~> 0.16.0"
Expand Down