maremma 4.9.8 → 4.9.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/changelog.yml +1 -1
- data/.github/workflows/ci.yml +13 -20
- data/.github/workflows/release.yml +6 -20
- data/CHANGELOG.md +24 -11
- data/Gemfile.lock +55 -40
- data/lib/maremma/version.rb +1 -1
- data/lib/maremma.rb +6 -4
- data/maremma.gemspec +8 -4
- metadata +54 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2155df9e6a2075cc734bc1d7272d83b3523026663696e60b8fd84a759fcf37f7
|
4
|
+
data.tar.gz: 403f8ecd28d0887ea9b6dd69b9f37462ecab579b1b3bd60f24049c5447de1982
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b39ed9bbf0917ad5c3f983b3aaeaf337c72460c83961f9b15c2a63b1dc34de3919d89f028a3f5809b6ff543e57ccda31297968f527dbf6a26f442c018bc3a93
|
7
|
+
data.tar.gz: 1bcdac9734d63bc4f5a9608efceba3fe7a3501d5390a77e973c05efae652763c8925e621f3ca78559c8a905bdeff53d8e475507bdbf384448c967bbfaa2abf10
|
data/.github/workflows/ci.yml
CHANGED
@@ -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
|
-
|
11
|
+
test:
|
12
|
+
strategy:
|
13
|
+
fail-fast: false
|
14
|
+
matrix:
|
15
|
+
ruby: ["2.6", "2.7", "3.0", "3.1"]
|
10
16
|
runs-on: ubuntu-latest
|
11
|
-
env:
|
12
|
-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
13
17
|
steps:
|
14
|
-
- uses: actions/checkout@
|
15
|
-
- name: Set up Ruby
|
16
|
-
uses:
|
18
|
+
- uses: actions/checkout@v3
|
19
|
+
- name: Set up Ruby ${{matrix.ruby}}
|
20
|
+
uses: ruby/setup-ruby@v1
|
17
21
|
with:
|
18
|
-
ruby-version:
|
19
|
-
|
20
|
-
- name:
|
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@
|
13
|
+
- uses: actions/checkout@v3
|
13
14
|
- name: Set up Ruby 2.6
|
14
|
-
uses:
|
15
|
+
uses: ruby/setup-ruby@v1
|
15
16
|
with:
|
16
|
-
ruby-version: 2.6
|
17
|
+
ruby-version: "2.6"
|
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
@@ -1,8 +1,25 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [4.9.9](https://github.com/datacite/maremma/tree/4.9.9) (2022-10-19)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.
|
5
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.8...4.9.9)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Upgrade Github Actions [\#24](https://github.com/datacite/maremma/issues/24)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Update GH workflows; remove slack action [\#29](https://github.com/datacite/maremma/pull/29) ([jrhoads](https://github.com/jrhoads))
|
14
|
+
- Update Dependencies [\#28](https://github.com/datacite/maremma/pull/28) ([jrhoads](https://github.com/jrhoads))
|
15
|
+
- Actions [\#27](https://github.com/datacite/maremma/pull/27) ([jrhoads](https://github.com/jrhoads))
|
16
|
+
- Update faraday [\#26](https://github.com/datacite/maremma/pull/26) ([jrhoads](https://github.com/jrhoads))
|
17
|
+
- 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))
|
18
|
+
- Add option to skip the encoding of the response body. [\#16](https://github.com/datacite/maremma/pull/16) ([jrhoads](https://github.com/jrhoads))
|
19
|
+
|
20
|
+
## [4.9.8](https://github.com/datacite/maremma/tree/4.9.8) (2022-05-24)
|
21
|
+
|
22
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.7...4.9.8)
|
6
23
|
|
7
24
|
**Merged pull requests:**
|
8
25
|
|
@@ -21,10 +38,6 @@
|
|
21
38
|
|
22
39
|
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.5...4.9.6)
|
23
40
|
|
24
|
-
**Merged pull requests:**
|
25
|
-
|
26
|
-
- Add option to skip the encoding of the response body. [\#16](https://github.com/datacite/maremma/pull/16) ([jrhoads](https://github.com/jrhoads))
|
27
|
-
|
28
41
|
## [4.9.5](https://github.com/datacite/maremma/tree/4.9.5) (2021-07-20)
|
29
42
|
|
30
43
|
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.4...4.9.5)
|
@@ -312,15 +325,15 @@
|
|
312
325
|
|
313
326
|
## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
|
314
327
|
|
315
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.
|
328
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.3.0)
|
316
329
|
|
317
|
-
## [v.2.5.
|
330
|
+
## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
|
318
331
|
|
319
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.
|
332
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.2.5.4)
|
320
333
|
|
321
|
-
## [v.2.5.
|
334
|
+
## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
|
322
335
|
|
323
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.
|
336
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.5)
|
324
337
|
|
325
338
|
## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
|
326
339
|
|
data/Gemfile.lock
CHANGED
@@ -1,79 +1,92 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
maremma (4.9.
|
4
|
+
maremma (4.9.9)
|
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 (
|
10
|
-
faraday-encoding (~> 0.0.
|
11
|
-
|
12
|
-
|
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.13.1, < 1.14.0)
|
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.
|
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.
|
26
|
-
public_suffix (>= 2.0.2, <
|
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.
|
35
|
+
diff-lcs (1.5.0)
|
33
36
|
docile (1.4.0)
|
34
37
|
excon (0.71.1)
|
35
|
-
faraday (
|
36
|
-
|
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
|
-
|
40
|
-
|
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.
|
55
|
+
i18n (1.12.0)
|
43
56
|
concurrent-ruby (~> 1.0)
|
44
57
|
jaro_winkler (1.5.4)
|
45
58
|
mini_portile2 (2.8.0)
|
46
|
-
minitest (5.
|
47
|
-
multipart-post (2.
|
48
|
-
nokogiri (1.13.
|
59
|
+
minitest (5.16.3)
|
60
|
+
multipart-post (2.2.3)
|
61
|
+
nokogiri (1.13.9)
|
49
62
|
mini_portile2 (~> 2.8.0)
|
50
63
|
racc (~> 1.4)
|
51
|
-
oj (3.13.
|
64
|
+
oj (3.13.21)
|
52
65
|
oj_mimic_json (1.0.1)
|
53
|
-
parallel (1.
|
54
|
-
parser (3.
|
66
|
+
parallel (1.22.1)
|
67
|
+
parser (3.1.2.1)
|
55
68
|
ast (~> 2.4.1)
|
56
|
-
public_suffix (
|
69
|
+
public_suffix (5.0.0)
|
57
70
|
racc (1.6.0)
|
58
|
-
rack (2.2.
|
71
|
+
rack (2.2.4)
|
59
72
|
rack-test (0.8.3)
|
60
73
|
rack (>= 1.0, < 3)
|
61
|
-
rainbow (3.
|
74
|
+
rainbow (3.1.1)
|
62
75
|
rake (13.0.6)
|
63
76
|
rexml (3.2.5)
|
64
|
-
rspec (3.
|
65
|
-
rspec-core (~> 3.
|
66
|
-
rspec-expectations (~> 3.
|
67
|
-
rspec-mocks (~> 3.
|
68
|
-
rspec-core (3.
|
69
|
-
rspec-support (~> 3.
|
70
|
-
rspec-expectations (3.
|
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.
|
73
|
-
rspec-mocks (3.
|
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.
|
76
|
-
rspec-support (3.
|
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.
|
93
|
-
tzinfo (2.0.
|
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.
|
98
|
-
addressable (>= 2.
|
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.
|
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.
|
134
|
+
2.3.12
|
data/lib/maremma/version.rb
CHANGED
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 "
|
7
|
+
require "faraday/follow_redirects"
|
8
|
+
require "faraday/gzip"
|
8
9
|
require "faraday/encoding"
|
9
|
-
require
|
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.
|
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", "
|
26
|
-
s.add_dependency "faraday-
|
27
|
-
s.add_dependency "
|
28
|
-
s.add_dependency "
|
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.13.1", "< 1.14.0"
|
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.
|
4
|
+
version: 4.9.9
|
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-
|
11
|
+
date: 2022-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -74,53 +74,95 @@ 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.
|
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.
|
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.
|
109
|
+
version: 0.0.5
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 0.0.5
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: faraday-excon
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 2.1.0
|
124
|
+
type: :runtime
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 2.1.0
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: faraday-gzip
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: 0.1.0
|
96
138
|
type: :runtime
|
97
139
|
prerelease: false
|
98
140
|
version_requirements: !ruby/object:Gem::Requirement
|
99
141
|
requirements:
|
100
142
|
- - "~>"
|
101
143
|
- !ruby/object:Gem::Version
|
102
|
-
version: 0.0
|
144
|
+
version: 0.1.0
|
103
145
|
- !ruby/object:Gem::Dependency
|
104
|
-
name:
|
146
|
+
name: faraday-multipart
|
105
147
|
requirement: !ruby/object:Gem::Requirement
|
106
148
|
requirements:
|
107
149
|
- - "~>"
|
108
150
|
- !ruby/object:Gem::Version
|
109
|
-
version: 0.
|
151
|
+
version: 1.0.4
|
110
152
|
type: :runtime
|
111
153
|
prerelease: false
|
112
154
|
version_requirements: !ruby/object:Gem::Requirement
|
113
155
|
requirements:
|
114
156
|
- - "~>"
|
115
157
|
- !ruby/object:Gem::Version
|
116
|
-
version: 0.
|
158
|
+
version: 1.0.4
|
117
159
|
- !ruby/object:Gem::Dependency
|
118
160
|
name: nokogiri
|
119
161
|
requirement: !ruby/object:Gem::Requirement
|
120
162
|
requirements:
|
121
163
|
- - ">="
|
122
164
|
- !ruby/object:Gem::Version
|
123
|
-
version: 1.
|
165
|
+
version: 1.13.1
|
124
166
|
- - "<"
|
125
167
|
- !ruby/object:Gem::Version
|
126
168
|
version: 1.14.0
|
@@ -130,7 +172,7 @@ dependencies:
|
|
130
172
|
requirements:
|
131
173
|
- - ">="
|
132
174
|
- !ruby/object:Gem::Version
|
133
|
-
version: 1.
|
175
|
+
version: 1.13.1
|
134
176
|
- - "<"
|
135
177
|
- !ruby/object:Gem::Version
|
136
178
|
version: 1.14.0
|
@@ -373,7 +415,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
373
415
|
requirements:
|
374
416
|
- - ">="
|
375
417
|
- !ruby/object:Gem::Version
|
376
|
-
version: '
|
418
|
+
version: '2.3'
|
377
419
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
378
420
|
requirements:
|
379
421
|
- - ">="
|