Skip to content

Commit

Permalink
Upgrade dependencies 👮
Browse files Browse the repository at this point in the history
  • Loading branch information
TRex22 committed Nov 8, 2023
1 parent a70e0e2 commit ffc22f6
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 41 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ yarn-debug.log*
!/storage/.keep

*.gem
.DS_Store
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.2.2
59 changes: 31 additions & 28 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
luno (0.2.11)
active_attr (~> 0.15.4)
luno (0.2.12)
active_attr (~> 0.16.0)
httparty (~> 0.21.0)
nokogiri (~> 1.14.0.rc1)
nokogiri (~> 1.15.4)

GEM
remote: https://rubygems.org/
Expand All @@ -22,18 +22,18 @@ GEM
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
active_attr (0.15.4)
actionpack (>= 3.0.2, < 7.1)
activemodel (>= 3.0.2, < 7.1)
activesupport (>= 3.0.2, < 7.1)
active_attr (0.16.0)
actionpack (>= 3.0.2, < 7.2)
activemodel (>= 3.0.2, < 7.2)
activesupport (>= 3.0.2, < 7.2)
activemodel (7.0.4)
activesupport (= 7.0.4)
activesupport (7.0.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
addressable (2.8.1)
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
ansi (1.5.0)
builder (3.2.4)
Expand All @@ -54,22 +54,23 @@ GEM
nokogiri (>= 1.5.9)
method_source (1.0.0)
mini_mime (1.1.2)
minitest (5.15.0)
minitest-focus (1.3.1)
minitest (5.20.0)
minitest-focus (1.4.0)
minitest (>= 4, < 6)
minitest-reporters (1.5.0)
minitest-reporters (1.6.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (1.13.0)
mocha (2.1.0)
ruby2_keywords (>= 0.0.5)
multi_xml (0.6.0)
nokogiri (1.14.0.rc1-arm64-darwin)
nokogiri (1.15.4-arm64-darwin)
racc (~> 1.4)
pry (0.14.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.0.1)
public_suffix (5.0.3)
racc (1.6.2)
rack (2.2.5)
rack-test (2.0.2)
Expand All @@ -79,30 +80,32 @@ GEM
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.4)
loofah (~> 2.19, >= 2.19.1)
rake (13.0.6)
rexml (3.2.5)
ruby-progressbar (1.11.0)
timecop (0.9.6)
rake (13.1.0)
rexml (3.2.6)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
timecop (0.9.8)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
webmock (3.14.0)
webmock (3.19.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)

PLATFORMS
arm64-darwin-22
arm64-darwin-23

DEPENDENCIES
luno!
minitest (~> 5.15.0)
minitest-focus (~> 1.3.1)
minitest-reporters (~> 1.5.0)
mocha (~> 1.13.0)
pry (~> 0.14.1)
rake (~> 13.0.6)
timecop (~> 0.9.1)
webmock (~> 3.14.0)
minitest (~> 5.20.0)
minitest-focus (~> 1.4.0)
minitest-reporters (~> 1.6.1)
mocha (~> 2.1.0)
pry (~> 0.14.2)
rake (~> 13.1.0)
timecop (~> 0.9.8)
webmock (~> 3.19.1)

BUNDLED WITH
2.4.2
2 changes: 1 addition & 1 deletion lib/luno/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Luno
VERSION = "0.2.11"
VERSION = "0.2.12"
end
22 changes: 11 additions & 11 deletions luno.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = "A client for using the Luno API in Ruby."
spec.description = "A client for using the Luno API in Ruby. Built form their api documentation. https://www.luno.com/en/developers/api. This is an unofficial project."
spec.description = "A client for using the Luno API in Ruby. Built from their api documentation. https://www.luno.com/en/developers/api. This is an unofficial project."
spec.homepage = "https://github.com/TRex22/luno"
spec.license = "MIT"

Expand All @@ -23,16 +23,16 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency "httparty", "~> 0.21.0"
spec.add_dependency "active_attr", "~> 0.15.4"
spec.add_dependency "nokogiri", "~> 1.14.0.rc1"
spec.add_dependency "active_attr", "~> 0.16.0"
spec.add_dependency "nokogiri", "~> 1.15.4"

# Development dependancies
spec.add_development_dependency "rake", "~> 13.0.6"
spec.add_development_dependency "minitest", "~> 5.15.0"
spec.add_development_dependency "minitest-focus", "~> 1.3.1"
spec.add_development_dependency "minitest-reporters", "~> 1.5.0"
spec.add_development_dependency "timecop", "~> 0.9.1"
spec.add_development_dependency "mocha", "~> 1.13.0"
spec.add_development_dependency "pry", "~> 0.14.1"
spec.add_development_dependency "webmock", "~> 3.14.0"
spec.add_development_dependency "rake", "~> 13.1.0"
spec.add_development_dependency "minitest", "~> 5.20.0"
spec.add_development_dependency "minitest-focus", "~> 1.4.0"
spec.add_development_dependency "minitest-reporters", "~> 1.6.1"
spec.add_development_dependency "timecop", "~> 0.9.8"
spec.add_development_dependency "mocha", "~> 2.1.0"
spec.add_development_dependency "pry", "~> 0.14.2"
spec.add_development_dependency "webmock", "~> 3.19.1"
end

0 comments on commit ffc22f6

Please sign in to comment.