maremma 4.9.8 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1ffabf03bd55d6ae7458bef0465049d01273352488565854296ed4daf5d290c
4
- data.tar.gz: 72931c90a2686d9fe8598e0a5531aea3e430f81280cfce6f55e8e2f0fc47fbfb
3
+ metadata.gz: 87361a0eff18b0fec31edd6959781448b05e5bf95d62151cb3ab95bca4c02c2f
4
+ data.tar.gz: 3b45d4ccc945db4875648c49cbc192cedcdbd917b70c88692799f136579665de
5
5
  SHA512:
6
- metadata.gz: ceae6221e6d15e753b553e4ff927666d78590e2c1146650b73cac0cfd69f507f9d5054918324212c87f26abfb44f27e0bfb951bca2821d518e1b57903395b25e
7
- data.tar.gz: 89b502b0dafccd8588d469b06f7aa5f5eb3aa732a25efc3d6e3888ac891dcbb12b37e9c36e8972f3556bc7a9f2d1bd2d4f648c5990a17a84c1a90d0505f37500
6
+ metadata.gz: dab0af461cf260bbcb6af724a09c7aff88c69b2c244ae2e329e921e22e9461293afeab491a81fe8b6120497ece5b0720f97503f6e2986bf1081e1e9a1a2ce48a
7
+ data.tar.gz: f84bfcd50640c71f28567da3a94e4ced7b104d11ecded2e52a7512c801b2c7ab4b85640c6c202229fb7edd2d75124cb2c86b2c17bf1eb3d200cc69339d55e828
@@ -15,7 +15,7 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
  name: Generate changelog
17
17
  steps:
18
- - uses: actions/checkout@v1
18
+ - uses: actions/checkout@v3
19
19
 
20
20
  - name: Generate changelog
21
21
  uses: charmixer/auto-changelog-action@v1.1
@@ -1,33 +1,26 @@
1
1
  name: Ruby CI
2
2
 
3
3
  on:
4
+ workflow_call:
5
+ workflow_dispatch:
4
6
  push:
5
7
  branches: [ master ]
6
8
  pull_request:
7
9
  branches: [ master ]
8
10
  jobs:
9
- build:
11
+ test:
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ ruby: ["3.0", "3.1", "3.2", "3.3"]
10
16
  runs-on: ubuntu-latest
11
- env:
12
- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
13
17
  steps:
14
- - uses: actions/checkout@v2
15
- - name: Set up Ruby 2.6
16
- uses: actions/setup-ruby@v1
18
+ - uses: actions/checkout@v3
19
+ - name: Set up Ruby ${{matrix.ruby}}
20
+ uses: ruby/setup-ruby@v1
17
21
  with:
18
- ruby-version: 2.6.x
19
-
20
- - name: Build and test
22
+ ruby-version: ${{matrix.ruby}}
23
+ bundler-cache: true
24
+ - name: Run tests
21
25
  run: |
22
- gem install bundler
23
- bundle install
24
26
  bundle exec rspec
25
-
26
- - name: Notify Slack
27
- uses: adamkdean/simple-slack-notify@1.0.4
28
- with:
29
- channel: '#ops'
30
- username: 'GitHub Actions'
31
- color: 'good'
32
- text: 'A new version of the maremma passes all tests.'
33
-
@@ -4,27 +4,21 @@ on:
4
4
  release:
5
5
  types: [published]
6
6
  jobs:
7
+ ci:
8
+ uses: ./.github/workflows/ci.yml
7
9
  build:
10
+ needs: ci
8
11
  runs-on: ubuntu-latest
9
- env:
10
- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
11
12
  steps:
12
- - uses: actions/checkout@v2
13
- - name: Set up Ruby 2.6
14
- uses: actions/setup-ruby@v1
13
+ - uses: actions/checkout@v3
14
+ - name: Set up Ruby 3.1.4
15
+ uses: ruby/setup-ruby@v1
15
16
  with:
16
- ruby-version: 2.6.x
17
+ ruby-version: "3.1.4"
17
18
 
18
19
  - name: Build and test
19
20
  run: |
20
- gem install bundler
21
21
  bundle install
22
- bundle exec rspec spec
23
-
24
- # - name: Publish code coverage
25
- # uses: paambaati/codeclimate-action@v2.7.4
26
- # env:
27
- # CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
28
22
 
29
23
  - name: Publish to RubyGems
30
24
  run: |
@@ -36,11 +30,3 @@ jobs:
36
30
  gem push *.gem
37
31
  env:
38
32
  GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
39
-
40
- - name: Notify Slack
41
- uses: adamkdean/simple-slack-notify@1.0.4
42
- with:
43
- channel: '#ops'
44
- username: 'GitHub Actions'
45
- color: 'good'
46
- text: 'A new version of the maremma gem has been released.'
data/CHANGELOG.md CHANGED
@@ -2,21 +2,42 @@
2
2
 
3
3
  ## [Unreleased](https://github.com/datacite/maremma/tree/HEAD)
4
4
 
5
- [Full Changelog](https://github.com/datacite/maremma/compare/4.9.7...HEAD)
5
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.9.9...HEAD)
6
6
 
7
7
  **Merged pull requests:**
8
8
 
9
- - Update nokogiri requirement from \>= 1.11.2, \< 1.13.0 to \>= 1.11.2, \< 1.14.0 [\#22](https://github.com/datacite/maremma/pull/22) ([dependabot[bot]](https://github.com/apps/dependabot))
10
- - Create CITATION.cff [\#18](https://github.com/datacite/maremma/pull/18) ([mfenner](https://github.com/mfenner))
9
+ - Bump rack from 2.2.4 to 2.2.6.4 [\#30](https://github.com/datacite/maremma/pull/30) ([dependabot[bot]](https://github.com/apps/dependabot))
11
10
 
12
- ## [4.9.7](https://github.com/datacite/maremma/tree/4.9.7) (2022-01-04)
11
+ ## [4.9.9](https://github.com/datacite/maremma/tree/4.9.9) (2022-10-19)
13
12
 
14
- [Full Changelog](https://github.com/datacite/maremma/compare/4.9.6...4.9.7)
13
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.9.8...4.9.9)
14
+
15
+ **Closed issues:**
16
+
17
+ - Upgrade Github Actions [\#24](https://github.com/datacite/maremma/issues/24)
18
+
19
+ **Merged pull requests:**
20
+
21
+ - Update GH workflows; remove slack action [\#29](https://github.com/datacite/maremma/pull/29) ([jrhoads](https://github.com/jrhoads))
22
+ - Update Dependencies [\#28](https://github.com/datacite/maremma/pull/28) ([jrhoads](https://github.com/jrhoads))
23
+ - Actions [\#27](https://github.com/datacite/maremma/pull/27) ([jrhoads](https://github.com/jrhoads))
24
+ - Update faraday [\#26](https://github.com/datacite/maremma/pull/26) ([jrhoads](https://github.com/jrhoads))
25
+ - Update workflows to test against multiple versions of ruby \(2.6, 2.7, 3.0, 3.1\) [\#25](https://github.com/datacite/maremma/pull/25) ([jrhoads](https://github.com/jrhoads))
26
+
27
+ ## [4.9.8](https://github.com/datacite/maremma/tree/4.9.8) (2022-05-24)
28
+
29
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.9.7...4.9.8)
15
30
 
16
31
  **Merged pull requests:**
17
32
 
33
+ - Update nokogiri requirement from \>= 1.11.2, \< 1.13.0 to \>= 1.11.2, \< 1.14.0 [\#22](https://github.com/datacite/maremma/pull/22) ([dependabot[bot]](https://github.com/apps/dependabot))
34
+ - Create CITATION.cff [\#18](https://github.com/datacite/maremma/pull/18) ([mfenner](https://github.com/mfenner))
18
35
  - Update nokogiri requirement from ~\> 1.11.2 to \>= 1.11.2, \< 1.13.0 [\#15](https://github.com/datacite/maremma/pull/15) ([dependabot[bot]](https://github.com/apps/dependabot))
19
36
 
37
+ ## [4.9.7](https://github.com/datacite/maremma/tree/4.9.7) (2022-01-04)
38
+
39
+ [Full Changelog](https://github.com/datacite/maremma/compare/4.9.6...4.9.7)
40
+
20
41
  ## [4.9.6](https://github.com/datacite/maremma/tree/4.9.6) (2021-10-28)
21
42
 
22
43
  [Full Changelog](https://github.com/datacite/maremma/compare/4.9.5...4.9.6)
@@ -312,15 +333,15 @@
312
333
 
313
334
  ## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
314
335
 
315
- [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.3.0)
336
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.3.0)
316
337
 
317
- ## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
338
+ ## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
318
339
 
319
- [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.2.5.5)
340
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.2.5.4)
320
341
 
321
- ## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
342
+ ## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
322
343
 
323
- [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.4)
344
+ [Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.5)
324
345
 
325
346
  ## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
326
347
 
data/Gemfile.lock CHANGED
@@ -1,79 +1,92 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- maremma (4.9.8)
4
+ maremma (5.0.0)
5
5
  activesupport (>= 4.2.5)
6
6
  addressable (>= 2.3.6)
7
7
  builder (~> 3.2, >= 3.2.2)
8
8
  excon (~> 0.71.0)
9
- faraday (~> 0.17.3)
10
- faraday-encoding (~> 0.0.4)
11
- faraday_middleware (~> 0.14.0)
12
- nokogiri (>= 1.11.2, < 1.14.0)
9
+ faraday (>= 2.0)
10
+ faraday-encoding (~> 0.0.5)
11
+ faraday-excon (~> 2.1.0)
12
+ faraday-follow_redirects (~> 0.3.0)
13
+ faraday-gzip (~> 0.1.0)
14
+ faraday-multipart (~> 1.0.4)
15
+ nokogiri (~> 1.16, >= 1.16.2)
13
16
  oj (>= 2.8.3)
14
17
  oj_mimic_json (~> 1.0, >= 1.0.1)
15
18
 
16
19
  GEM
17
20
  remote: https://rubygems.org/
18
21
  specs:
19
- activesupport (6.1.6)
22
+ activesupport (6.1.7)
20
23
  concurrent-ruby (~> 1.0, >= 1.0.2)
21
24
  i18n (>= 1.6, < 2)
22
25
  minitest (>= 5.1)
23
26
  tzinfo (~> 2.0)
24
27
  zeitwerk (~> 2.3)
25
- addressable (2.8.0)
26
- public_suffix (>= 2.0.2, < 5.0)
28
+ addressable (2.8.1)
29
+ public_suffix (>= 2.0.2, < 6.0)
27
30
  ast (2.4.2)
28
31
  builder (3.2.4)
29
32
  concurrent-ruby (1.1.10)
30
33
  crack (0.4.5)
31
34
  rexml
32
- diff-lcs (1.4.4)
35
+ diff-lcs (1.5.0)
33
36
  docile (1.4.0)
34
37
  excon (0.71.1)
35
- faraday (0.17.5)
36
- multipart-post (>= 1.2, < 3)
38
+ faraday (2.6.0)
39
+ faraday-net_http (>= 2.0, < 3.1)
40
+ ruby2_keywords (>= 0.0.4)
37
41
  faraday-encoding (0.0.5)
38
42
  faraday
39
- faraday_middleware (0.14.0)
40
- faraday (>= 0.7.4, < 1.0)
43
+ faraday-excon (2.1.0)
44
+ excon (>= 0.27.4)
45
+ faraday (~> 2.0)
46
+ faraday-follow_redirects (0.3.0)
47
+ faraday (>= 1, < 3)
48
+ faraday-gzip (0.1.0)
49
+ faraday (>= 1.0)
50
+ zlib (~> 2.1)
51
+ faraday-multipart (1.0.4)
52
+ multipart-post (~> 2)
53
+ faraday-net_http (3.0.1)
41
54
  hashdiff (1.0.1)
42
- i18n (1.10.0)
55
+ i18n (1.12.0)
43
56
  concurrent-ruby (~> 1.0)
44
57
  jaro_winkler (1.5.4)
45
- mini_portile2 (2.8.0)
46
- minitest (5.15.0)
47
- multipart-post (2.1.1)
48
- nokogiri (1.13.6)
49
- mini_portile2 (~> 2.8.0)
58
+ mini_portile2 (2.8.5)
59
+ minitest (5.16.3)
60
+ multipart-post (2.2.3)
61
+ nokogiri (1.16.2)
62
+ mini_portile2 (~> 2.8.2)
50
63
  racc (~> 1.4)
51
- oj (3.13.13)
64
+ oj (3.13.21)
52
65
  oj_mimic_json (1.0.1)
53
- parallel (1.20.1)
54
- parser (3.0.2.0)
66
+ parallel (1.22.1)
67
+ parser (3.1.2.1)
55
68
  ast (~> 2.4.1)
56
- public_suffix (4.0.6)
69
+ public_suffix (5.0.0)
57
70
  racc (1.6.0)
58
- rack (2.2.3)
71
+ rack (2.2.6.4)
59
72
  rack-test (0.8.3)
60
73
  rack (>= 1.0, < 3)
61
- rainbow (3.0.0)
74
+ rainbow (3.1.1)
62
75
  rake (13.0.6)
63
76
  rexml (3.2.5)
64
- rspec (3.10.0)
65
- rspec-core (~> 3.10.0)
66
- rspec-expectations (~> 3.10.0)
67
- rspec-mocks (~> 3.10.0)
68
- rspec-core (3.10.1)
69
- rspec-support (~> 3.10.0)
70
- rspec-expectations (3.10.1)
77
+ rspec (3.11.0)
78
+ rspec-core (~> 3.11.0)
79
+ rspec-expectations (~> 3.11.0)
80
+ rspec-mocks (~> 3.11.0)
81
+ rspec-core (3.11.0)
82
+ rspec-support (~> 3.11.0)
83
+ rspec-expectations (3.11.1)
71
84
  diff-lcs (>= 1.2.0, < 2.0)
72
- rspec-support (~> 3.10.0)
73
- rspec-mocks (3.10.2)
85
+ rspec-support (~> 3.11.0)
86
+ rspec-mocks (3.11.1)
74
87
  diff-lcs (>= 1.2.0, < 2.0)
75
- rspec-support (~> 3.10.0)
76
- rspec-support (3.10.2)
88
+ rspec-support (~> 3.11.0)
89
+ rspec-support (3.11.1)
77
90
  rubocop (0.77.0)
78
91
  jaro_winkler (~> 1.5.1)
79
92
  parallel (~> 1.10)
@@ -84,21 +97,23 @@ GEM
84
97
  rubocop-performance (1.6.1)
85
98
  rubocop (>= 0.71.0)
86
99
  ruby-progressbar (1.11.0)
100
+ ruby2_keywords (0.0.5)
87
101
  simplecov (0.21.2)
88
102
  docile (~> 1.1)
89
103
  simplecov-html (~> 0.11)
90
104
  simplecov_json_formatter (~> 0.1)
91
105
  simplecov-html (0.12.3)
92
- simplecov_json_formatter (0.1.3)
93
- tzinfo (2.0.4)
106
+ simplecov_json_formatter (0.1.4)
107
+ tzinfo (2.0.5)
94
108
  concurrent-ruby (~> 1.0)
95
109
  unicode-display_width (1.6.1)
96
110
  vcr (3.0.3)
97
- webmock (3.13.0)
98
- addressable (>= 2.3.6)
111
+ webmock (3.18.1)
112
+ addressable (>= 2.8.0)
99
113
  crack (>= 0.3.2)
100
114
  hashdiff (>= 0.4.0, < 2.0.0)
101
- zeitwerk (2.5.4)
115
+ zeitwerk (2.6.1)
116
+ zlib (2.1.1)
102
117
 
103
118
  PLATFORMS
104
119
  ruby
@@ -116,4 +131,4 @@ DEPENDENCIES
116
131
  webmock (~> 3.0, >= 3.0.1)
117
132
 
118
133
  BUNDLED WITH
119
- 2.3.14
134
+ 2.5.5
@@ -1,3 +1,3 @@
1
1
  module Maremma
2
- VERSION = "4.9.8".freeze
2
+ VERSION = "5.0.0".freeze
3
3
  end
data/lib/maremma.rb CHANGED
@@ -4,9 +4,11 @@ require "active_support/all"
4
4
  require "json"
5
5
  require "nokogiri"
6
6
  require "faraday"
7
- require "faraday_middleware"
7
+ require "faraday/follow_redirects"
8
+ require "faraday/gzip"
8
9
  require "faraday/encoding"
9
- require "excon"
10
+ require 'faraday/multipart'
11
+ require "faraday/excon"
10
12
  require "uri"
11
13
  require "addressable/uri"
12
14
  require "maremma/xml_converter"
@@ -129,10 +131,10 @@ module Maremma
129
131
  c.headers["Content-type"] = options[:headers]["Content-type"] if options[:headers]["Content-type"].present?
130
132
  c.headers["Accept"] = options[:headers]["Accept"]
131
133
  c.headers["User-Agent"] = options[:headers]["User-Agent"]
132
- c.use FaradayMiddleware::FollowRedirects, limit: limit, cookie: :all if limit > 0
133
- c.use FaradayMiddleware::Gzip
134
+ c.request :gzip
134
135
  c.request :multipart
135
136
  c.request :json if options[:headers]["Accept"] == "application/json"
137
+ c.response :follow_redirects, limit: limit, cookie: :all if limit > 0
136
138
  c.response :encoding
137
139
  c.adapter :excon
138
140
  end
data/maremma.gemspec CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
13
13
  s.version = Maremma::VERSION
14
14
  s.extra_rdoc_files = ["README.md"]
15
15
  s.license = "MIT"
16
+ s.required_ruby_version = ['>=2.3']
16
17
 
17
18
  s.files = `git ls-files`.split("\n")
18
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -22,10 +23,13 @@ Gem::Specification.new do |s|
22
23
  s.add_dependency "addressable", ">= 2.3.6"
23
24
  s.add_dependency "builder", "~> 3.2", ">= 3.2.2"
24
25
  s.add_dependency "excon", "~> 0.71.0"
25
- s.add_dependency "faraday", "~> 0.17.3"
26
- s.add_dependency "faraday-encoding", "~> 0.0.4"
27
- s.add_dependency "faraday_middleware", "~> 0.14.0"
28
- s.add_dependency "nokogiri", ">= 1.11.2", "< 1.14.0"
26
+ s.add_dependency "faraday", ">=2.0"
27
+ s.add_dependency "faraday-follow_redirects", "~> 0.3.0"
28
+ s.add_dependency "faraday-encoding", "~> 0.0.5"
29
+ s.add_dependency "faraday-excon", "~>2.1.0"
30
+ s.add_dependency "faraday-gzip", "~> 0.1.0"
31
+ s.add_dependency "faraday-multipart", "~> 1.0.4"
32
+ s.add_dependency "nokogiri", "~> 1.16", ">= 1.16.2"
29
33
  s.add_dependency "oj", ">= 2.8.3"
30
34
  s.add_dependency "oj_mimic_json", "~> 1.0", ">= 1.0.1"
31
35
  s.add_development_dependency "bundler", "~> 2.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maremma
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.8
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Fenner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-24 00:00:00.000000000 Z
11
+ date: 2024-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -74,66 +74,108 @@ dependencies:
74
74
  version: 0.71.0
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: faraday
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '2.0'
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '2.0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: faraday-follow_redirects
77
91
  requirement: !ruby/object:Gem::Requirement
78
92
  requirements:
79
93
  - - "~>"
80
94
  - !ruby/object:Gem::Version
81
- version: 0.17.3
95
+ version: 0.3.0
82
96
  type: :runtime
83
97
  prerelease: false
84
98
  version_requirements: !ruby/object:Gem::Requirement
85
99
  requirements:
86
100
  - - "~>"
87
101
  - !ruby/object:Gem::Version
88
- version: 0.17.3
102
+ version: 0.3.0
89
103
  - !ruby/object:Gem::Dependency
90
104
  name: faraday-encoding
91
105
  requirement: !ruby/object:Gem::Requirement
92
106
  requirements:
93
107
  - - "~>"
94
108
  - !ruby/object:Gem::Version
95
- version: 0.0.4
109
+ version: 0.0.5
96
110
  type: :runtime
97
111
  prerelease: false
98
112
  version_requirements: !ruby/object:Gem::Requirement
99
113
  requirements:
100
114
  - - "~>"
101
115
  - !ruby/object:Gem::Version
102
- version: 0.0.4
116
+ version: 0.0.5
103
117
  - !ruby/object:Gem::Dependency
104
- name: faraday_middleware
118
+ name: faraday-excon
105
119
  requirement: !ruby/object:Gem::Requirement
106
120
  requirements:
107
121
  - - "~>"
108
122
  - !ruby/object:Gem::Version
109
- version: 0.14.0
123
+ version: 2.1.0
110
124
  type: :runtime
111
125
  prerelease: false
112
126
  version_requirements: !ruby/object:Gem::Requirement
113
127
  requirements:
114
128
  - - "~>"
115
129
  - !ruby/object:Gem::Version
116
- version: 0.14.0
130
+ version: 2.1.0
117
131
  - !ruby/object:Gem::Dependency
118
- name: nokogiri
132
+ name: faraday-gzip
119
133
  requirement: !ruby/object:Gem::Requirement
120
134
  requirements:
121
- - - ">="
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: 0.1.0
138
+ type: :runtime
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
122
143
  - !ruby/object:Gem::Version
123
- version: 1.11.2
124
- - - "<"
144
+ version: 0.1.0
145
+ - !ruby/object:Gem::Dependency
146
+ name: faraday-multipart
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
125
150
  - !ruby/object:Gem::Version
126
- version: 1.14.0
151
+ version: 1.0.4
127
152
  type: :runtime
128
153
  prerelease: false
129
154
  version_requirements: !ruby/object:Gem::Requirement
130
155
  requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: 1.0.4
159
+ - !ruby/object:Gem::Dependency
160
+ name: nokogiri
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: '1.16'
131
166
  - - ">="
132
167
  - !ruby/object:Gem::Version
133
- version: 1.11.2
134
- - - "<"
168
+ version: 1.16.2
169
+ type: :runtime
170
+ prerelease: false
171
+ version_requirements: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - "~>"
174
+ - !ruby/object:Gem::Version
175
+ version: '1.16'
176
+ - - ">="
135
177
  - !ruby/object:Gem::Version
136
- version: 1.14.0
178
+ version: 1.16.2
137
179
  - !ruby/object:Gem::Dependency
138
180
  name: oj
139
181
  requirement: !ruby/object:Gem::Requirement
@@ -373,14 +415,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
373
415
  requirements:
374
416
  - - ">="
375
417
  - !ruby/object:Gem::Version
376
- version: '0'
418
+ version: '2.3'
377
419
  required_rubygems_version: !ruby/object:Gem::Requirement
378
420
  requirements:
379
421
  - - ">="
380
422
  - !ruby/object:Gem::Version
381
423
  version: '0'
382
424
  requirements: []
383
- rubygems_version: 3.0.3.1
425
+ rubygems_version: 3.3.26
384
426
  signing_key:
385
427
  specification_version: 4
386
428
  summary: Simplified network calls