pactas_itero 0.3.0 → 0.7.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 +5 -5
- data/CHANGELOG.md +36 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +89 -42
- data/README.md +3 -1
- data/Rakefile +4 -4
- data/bin/setup +7 -0
- data/lib/pactas_itero/api/contracts.rb +5 -0
- data/lib/pactas_itero/api/invoices.rb +6 -2
- data/lib/pactas_itero/api/oauth.rb +2 -3
- data/lib/pactas_itero/api/rated_items.rb +1 -1
- data/lib/pactas_itero/api.rb +7 -7
- data/lib/pactas_itero/client.rb +26 -22
- data/lib/pactas_itero/configurable.rb +5 -6
- data/lib/pactas_itero/default.rb +12 -15
- data/lib/pactas_itero/error.rb +12 -15
- data/lib/pactas_itero/ext/hash/camelize_keys.rb +7 -8
- data/lib/pactas_itero/response/raise_error.rb +3 -7
- data/lib/pactas_itero/version.rb +1 -1
- data/lib/pactas_itero.rb +2 -2
- data/pactas_itero.gemspec +37 -0
- data/spec/fixtures/contract_changes.json +22 -0
- data/spec/fixtures/invoice_download.pdf +0 -0
- data/spec/pactas_itero/api/contracts_spec.rb +85 -57
- data/spec/pactas_itero/api/customers_spec.rb +101 -99
- data/spec/pactas_itero/api/invoices_spec.rb +65 -49
- data/spec/pactas_itero/api/orders_spec.rb +42 -42
- data/spec/pactas_itero/api/rated_items_spec.rb +42 -42
- data/spec/pactas_itero/client_spec.rb +48 -52
- data/spec/pactas_itero_spec.rb +1 -3
- data/spec/spec_helper.rb +12 -12
- data/yarn-error.log +43 -0
- metadata +54 -25
@@ -1,14 +1,12 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "spec_helper"
|
2
|
+
require "json"
|
3
3
|
|
4
4
|
describe PactasItero::Client do
|
5
|
-
|
6
5
|
before do
|
7
6
|
PactasItero.reset!
|
8
7
|
end
|
9
8
|
|
10
9
|
describe "module configuration" do
|
11
|
-
|
12
10
|
before do
|
13
11
|
PactasItero.configure do |config|
|
14
12
|
PactasItero::Configurable.keys.each do |key|
|
@@ -26,12 +24,11 @@ describe PactasItero::Client do
|
|
26
24
|
end
|
27
25
|
|
28
26
|
describe "with class level configuration" do
|
29
|
-
|
30
27
|
before do
|
31
28
|
@opts = {
|
32
|
-
#connection_options: {ssl: {verify: false}},
|
33
|
-
client_id:
|
34
|
-
client_secret: "the_client_secret"
|
29
|
+
# connection_options: {ssl: {verify: false}},
|
30
|
+
client_id: "the_client_id",
|
31
|
+
client_secret: "the_client_secret",
|
35
32
|
}
|
36
33
|
end
|
37
34
|
|
@@ -60,7 +57,7 @@ describe PactasItero::Client do
|
|
60
57
|
|
61
58
|
describe ".get" do
|
62
59
|
it "requests the given resource using get" do
|
63
|
-
client = PactasItero::Client.new(bearer_token:
|
60
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
64
61
|
request = stub_get("/something?foo=bar")
|
65
62
|
|
66
63
|
client.get "/something", foo: "bar"
|
@@ -69,7 +66,7 @@ describe PactasItero::Client do
|
|
69
66
|
end
|
70
67
|
|
71
68
|
it "passes along request headers" do
|
72
|
-
client = PactasItero::Client.new(bearer_token:
|
69
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
73
70
|
request = stub_get("/").
|
74
71
|
with(query: { foo: "bar" }, headers: { accept: "text/plain" })
|
75
72
|
client.get "/", foo: "bar", accept: "text/plain"
|
@@ -80,7 +77,7 @@ describe PactasItero::Client do
|
|
80
77
|
|
81
78
|
describe ".head" do
|
82
79
|
it "requests the given resource using head" do
|
83
|
-
client = PactasItero::Client.new(bearer_token:
|
80
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
84
81
|
request = stub_head("/something?foo=bar")
|
85
82
|
|
86
83
|
client.head "/something", foo: "bar"
|
@@ -89,7 +86,7 @@ describe PactasItero::Client do
|
|
89
86
|
end
|
90
87
|
|
91
88
|
it "passes along request headers" do
|
92
|
-
client = PactasItero::Client.new(bearer_token:
|
89
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
93
90
|
request = stub_head("/").
|
94
91
|
with(query: { foo: "bar" }, headers: { accept: "text/plain" })
|
95
92
|
|
@@ -101,7 +98,7 @@ describe PactasItero::Client do
|
|
101
98
|
|
102
99
|
describe ".post" do
|
103
100
|
it "requests the given resource using post" do
|
104
|
-
client = PactasItero::Client.new(bearer_token:
|
101
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
105
102
|
request = stub_post("/something").
|
106
103
|
with(body: { foo: "bar" }.to_json)
|
107
104
|
|
@@ -111,7 +108,7 @@ describe PactasItero::Client do
|
|
111
108
|
end
|
112
109
|
|
113
110
|
it "passes along request headers" do
|
114
|
-
client = PactasItero::Client.new(bearer_token:
|
111
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
115
112
|
headers = { "X-Foo" => "bar" }
|
116
113
|
request = stub_post("/").
|
117
114
|
with(body: { foo: "bar" }.to_json, headers: headers)
|
@@ -124,7 +121,7 @@ describe PactasItero::Client do
|
|
124
121
|
|
125
122
|
describe ".put" do
|
126
123
|
it "requests the given resource using put" do
|
127
|
-
client = PactasItero::Client.new(bearer_token:
|
124
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
128
125
|
request = stub_put("/something").
|
129
126
|
with(body: { foo: "bar" }.to_json)
|
130
127
|
|
@@ -134,7 +131,7 @@ describe PactasItero::Client do
|
|
134
131
|
end
|
135
132
|
|
136
133
|
it "passes along request headers" do
|
137
|
-
client = PactasItero::Client.new(bearer_token:
|
134
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
138
135
|
headers = { "X-Foo" => "bar" }
|
139
136
|
request = stub_put("/").
|
140
137
|
with(body: { foo: "bar" }.to_json, headers: headers)
|
@@ -147,7 +144,7 @@ describe PactasItero::Client do
|
|
147
144
|
|
148
145
|
describe ".patch" do
|
149
146
|
it "requests the given resource using patch" do
|
150
|
-
client = PactasItero::Client.new(bearer_token:
|
147
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
151
148
|
request = stub_patch("/something").
|
152
149
|
with(body: { foo: "bar" }.to_json)
|
153
150
|
|
@@ -157,7 +154,7 @@ describe PactasItero::Client do
|
|
157
154
|
end
|
158
155
|
|
159
156
|
it "passes along request headers" do
|
160
|
-
client = PactasItero::Client.new(bearer_token:
|
157
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
161
158
|
headers = { "X-Foo" => "bar" }
|
162
159
|
request = stub_patch("/").
|
163
160
|
with(body: { foo: "bar" }.to_json, headers: headers)
|
@@ -170,7 +167,7 @@ describe PactasItero::Client do
|
|
170
167
|
|
171
168
|
describe ".delete" do
|
172
169
|
it "requests the given resource using delete" do
|
173
|
-
client = PactasItero::Client.new(bearer_token:
|
170
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
174
171
|
request = stub_delete("/something")
|
175
172
|
|
176
173
|
client.delete "/something"
|
@@ -179,7 +176,7 @@ describe PactasItero::Client do
|
|
179
176
|
end
|
180
177
|
|
181
178
|
it "passes along request headers" do
|
182
|
-
client = PactasItero::Client.new(bearer_token:
|
179
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
183
180
|
headers = { "X-Foo" => "bar" }
|
184
181
|
request = stub_delete("/").with(headers: headers)
|
185
182
|
|
@@ -190,8 +187,7 @@ describe PactasItero::Client do
|
|
190
187
|
end
|
191
188
|
|
192
189
|
describe "when making requests" do
|
193
|
-
|
194
|
-
it 'uses the sandbox endpoint by default' do
|
190
|
+
it "uses the sandbox endpoint by default" do
|
195
191
|
client = PactasItero::Client.new
|
196
192
|
|
197
193
|
expect(client.api_endpoint).to eq "https://sandbox.billwerk.com/"
|
@@ -200,11 +196,11 @@ describe PactasItero::Client do
|
|
200
196
|
it "uses the production endpoint when production is set to true" do
|
201
197
|
client = PactasItero::Client.new(production: true)
|
202
198
|
|
203
|
-
expect(client.api_endpoint).to eq
|
199
|
+
expect(client.api_endpoint).to eq "https://app.billwerk.com/"
|
204
200
|
end
|
205
201
|
|
206
202
|
it "sets a default user agent" do
|
207
|
-
client = PactasItero::Client.new(bearer_token:
|
203
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
208
204
|
request = stub_get("/").
|
209
205
|
with(headers: { user_agent: PactasItero::Default.user_agent })
|
210
206
|
|
@@ -215,7 +211,7 @@ describe PactasItero::Client do
|
|
215
211
|
|
216
212
|
it "accepts a custom user agent" do
|
217
213
|
user_agent = "Mozilla/1.0 (Win3.1)"
|
218
|
-
client = PactasItero::Client.new(user_agent: user_agent, bearer_token:
|
214
|
+
client = PactasItero::Client.new(user_agent: user_agent, bearer_token: "bt")
|
219
215
|
request = stub_get("/").with(headers: { user_agent: user_agent })
|
220
216
|
|
221
217
|
client.get "/"
|
@@ -223,8 +219,8 @@ describe PactasItero::Client do
|
|
223
219
|
expect(request).to have_been_made
|
224
220
|
end
|
225
221
|
|
226
|
-
it
|
227
|
-
token =
|
222
|
+
it "creates the correct auth headers with supplied bearer_token" do
|
223
|
+
token = "the_bearer_token"
|
228
224
|
request = stub_get("/").with(headers: { authorization: "Bearer #{token}" })
|
229
225
|
client = PactasItero::Client.new(bearer_token: token)
|
230
226
|
|
@@ -233,8 +229,8 @@ describe PactasItero::Client do
|
|
233
229
|
expect(request).to have_been_made
|
234
230
|
end
|
235
231
|
|
236
|
-
it
|
237
|
-
token = OpenStruct.new(access_token:
|
232
|
+
it "creates the correct auth headers with supplied bearer_token" do
|
233
|
+
token = OpenStruct.new(access_token: "the_bearer_token")
|
238
234
|
client = PactasItero::Client.new(bearer_token: token)
|
239
235
|
|
240
236
|
request = stub_get("/").with(headers: { authorization: "Bearer #{token.access_token}" })
|
@@ -247,28 +243,28 @@ describe PactasItero::Client do
|
|
247
243
|
|
248
244
|
context "error handling" do
|
249
245
|
it "raises on 404" do
|
250
|
-
client = PactasItero::Client.new(bearer_token:
|
251
|
-
stub_get(
|
246
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
247
|
+
stub_get("/four_oh_four").to_return(status: 404)
|
252
248
|
|
253
|
-
expect { client.get(
|
249
|
+
expect { client.get("/four_oh_four") }.to raise_error PactasItero::NotFound
|
254
250
|
end
|
255
251
|
|
256
252
|
it "raises on 500" do
|
257
|
-
client = PactasItero::Client.new(bearer_token:
|
258
|
-
stub_get(
|
253
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
254
|
+
stub_get("/five_oh_oh").to_return(status: 500)
|
259
255
|
|
260
|
-
expect { client.get(
|
256
|
+
expect { client.get("/five_oh_oh") }.to raise_error PactasItero::InternalServerError
|
261
257
|
end
|
262
258
|
|
263
259
|
it "includes a message" do
|
264
|
-
client = PactasItero::Client.new(bearer_token:
|
265
|
-
stub_get(
|
260
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
261
|
+
stub_get("/with_message").to_return(
|
266
262
|
status: 422,
|
267
263
|
headers: { content_type: "application/json" },
|
268
|
-
body: { Message: "'Something' is not a valid ObjectId. Expected a 24 digit hex string." }.to_json
|
264
|
+
body: { Message: "'Something' is not a valid ObjectId. Expected a 24 digit hex string." }.to_json,
|
269
265
|
)
|
270
266
|
|
271
|
-
expect { client.get(
|
267
|
+
expect { client.get("/with_message") }.to raise_error(
|
272
268
|
PactasItero::UnprocessableEntity,
|
273
269
|
"GET https://sandbox.billwerk.com/with_message: " \
|
274
270
|
"422 - 'Something' is not a valid ObjectId. Expected a 24 digit hex string.",
|
@@ -276,41 +272,41 @@ describe PactasItero::Client do
|
|
276
272
|
end
|
277
273
|
|
278
274
|
it "raises a ClientError on unknown client errors" do
|
279
|
-
client = PactasItero::Client.new(bearer_token:
|
280
|
-
stub_get(
|
275
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
276
|
+
stub_get("/something").to_return(
|
281
277
|
status: 418,
|
282
278
|
headers: { content_type: "application/json" },
|
283
|
-
body: { message: "I'm a teapot" }.to_json
|
279
|
+
body: { message: "I'm a teapot" }.to_json,
|
284
280
|
)
|
285
281
|
|
286
|
-
expect { client.get(
|
282
|
+
expect { client.get("/something") }.to raise_error PactasItero::ClientError
|
287
283
|
end
|
288
284
|
|
289
285
|
it "raises a ServerError on unknown server errors" do
|
290
|
-
client = PactasItero::Client.new(bearer_token:
|
291
|
-
stub_get(
|
286
|
+
client = PactasItero::Client.new(bearer_token: "bt")
|
287
|
+
stub_get("/something").to_return(
|
292
288
|
status: 509,
|
293
289
|
headers: { content_type: "application/json" },
|
294
|
-
body: { message: "Bandwidth exceeded" }.to_json
|
290
|
+
body: { message: "Bandwidth exceeded" }.to_json,
|
295
291
|
)
|
296
292
|
|
297
|
-
expect { client.get(
|
293
|
+
expect { client.get("/something") }.to raise_error PactasItero::ServerError
|
298
294
|
end
|
299
295
|
end
|
300
296
|
|
301
|
-
describe
|
302
|
-
it
|
297
|
+
describe ".sandbox_api_endpoint" do
|
298
|
+
it "returns url of the sandbox endpoint" do
|
303
299
|
client = PactasItero::Client.new
|
304
300
|
|
305
301
|
expect(client.sandbox_api_endpoint).to eq "https://sandbox.billwerk.com"
|
306
302
|
end
|
307
303
|
end
|
308
304
|
|
309
|
-
describe
|
310
|
-
it
|
305
|
+
describe ".production_api_endpoint" do
|
306
|
+
it "returns url of the sandbox endpoint" do
|
311
307
|
client = PactasItero::Client.new
|
312
308
|
|
313
|
-
expect(client.production_api_endpoint).to eq
|
309
|
+
expect(client.production_api_endpoint).to eq "https://app.billwerk.com"
|
314
310
|
end
|
315
311
|
end
|
316
312
|
end
|
data/spec/pactas_itero_spec.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
require
|
1
|
+
require "spec_helper"
|
2
2
|
|
3
3
|
describe PactasItero do
|
4
|
-
|
5
4
|
it "sets defaults" do
|
6
5
|
PactasItero::Configurable.keys.each do |key|
|
7
6
|
expect(PactasItero.instance_variable_get(:"@#{key}")).to eq(PactasItero::Default.send(key))
|
@@ -35,5 +34,4 @@ describe PactasItero do
|
|
35
34
|
end
|
36
35
|
end
|
37
36
|
end
|
38
|
-
|
39
37
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
require
|
1
|
+
require "simplecov"
|
2
2
|
|
3
3
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
|
4
4
|
SimpleCov::Formatter::HTMLFormatter,
|
5
5
|
)
|
6
6
|
|
7
7
|
SimpleCov.start do
|
8
|
-
add_filter
|
9
|
-
add_filter
|
10
|
-
#minimum_coverage(99.15)
|
8
|
+
add_filter "/spec/"
|
9
|
+
add_filter "/vendor/bundle"
|
10
|
+
# minimum_coverage(99.15)
|
11
11
|
refuse_coverage_drop
|
12
12
|
end
|
13
13
|
|
14
|
-
require
|
15
|
-
require
|
16
|
-
require
|
17
|
-
require
|
14
|
+
require "json"
|
15
|
+
require "pactas_itero"
|
16
|
+
require "rspec"
|
17
|
+
require "webmock/rspec"
|
18
18
|
|
19
19
|
WebMock.disable_net_connect!
|
20
20
|
|
@@ -35,7 +35,7 @@ RSpec.configure do |config|
|
|
35
35
|
/bin\//,
|
36
36
|
/vendor\/bundle\/(.*)\/gems\//,
|
37
37
|
/spec\/spec_helper.rb/,
|
38
|
-
/lib\/rspec\/(core|expectations|matchers|mocks)
|
38
|
+
/lib\/rspec\/(core|expectations|matchers|mocks)/,
|
39
39
|
]
|
40
40
|
|
41
41
|
config.after(:each) do
|
@@ -44,11 +44,11 @@ RSpec.configure do |config|
|
|
44
44
|
end
|
45
45
|
|
46
46
|
def fixture_path
|
47
|
-
File.expand_path(
|
47
|
+
File.expand_path("fixtures", __dir__)
|
48
48
|
end
|
49
49
|
|
50
50
|
def fixture(file)
|
51
|
-
File.new(fixture_path +
|
51
|
+
File.new(fixture_path + "/" + file)
|
52
52
|
end
|
53
53
|
|
54
54
|
def pactas_api_endpoint
|
@@ -56,7 +56,7 @@ def pactas_api_endpoint
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def pactas_api_url(url)
|
59
|
-
|
59
|
+
/^http/.match?(url) ? url : "#{pactas_api_endpoint}#{url}"
|
60
60
|
end
|
61
61
|
|
62
62
|
def a_delete(path)
|
data/yarn-error.log
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
Arguments:
|
2
|
+
/Users/martenklitzke/.nvm/versions/node/v14.18.2/bin/node /opt/homebrew/Cellar/yarn/1.22.17_2/libexec/bin/yarn.js add standard-version --dev
|
3
|
+
|
4
|
+
PATH:
|
5
|
+
/Users/martenklitzke/.nvm/versions/node/v14.18.2/bin:/opt/homebrew/Cellar/zplug/2.4.2/bin:/opt/homebrew/opt/python@2/libexec/bin:./node_modules/.bin:./bin:/usr/local/share/npm/bin:/bin:/Users/martenklitzke/bin:/opt/homebrew/bin:/usr/local/sbin:/opt/homebrew/var/rbenv/shims:/opt/homebrew/var/rbenv/bin:/Users/martenklitzke/.nvm/versions/node/v14.18.2/bin:/Users/martenklitzke/go/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/MacGPG2/bin:/usr/local/opt/android-sdk/tools:/usr/local/opt/android-sdk/platform-tools:/Users/martenklitzke/Applications/bin:/usr/local/go/bin:/Users/martenklitzke/.composer/vendor/bin
|
6
|
+
|
7
|
+
Yarn version:
|
8
|
+
1.22.17
|
9
|
+
|
10
|
+
Node version:
|
11
|
+
14.18.2
|
12
|
+
|
13
|
+
Platform:
|
14
|
+
darwin arm64
|
15
|
+
|
16
|
+
Trace:
|
17
|
+
SyntaxError: /Users/martenklitzke/dev/billwerk/package.json: Unexpected token
|
18
|
+
in JSON at position 112
|
19
|
+
at JSON.parse (<anonymous>)
|
20
|
+
at /opt/homebrew/Cellar/yarn/1.22.17_2/libexec/lib/cli.js:1625:59
|
21
|
+
at Generator.next (<anonymous>)
|
22
|
+
at step (/opt/homebrew/Cellar/yarn/1.22.17_2/libexec/lib/cli.js:310:30)
|
23
|
+
at /opt/homebrew/Cellar/yarn/1.22.17_2/libexec/lib/cli.js:321:13
|
24
|
+
|
25
|
+
npm manifest:
|
26
|
+
{
|
27
|
+
"name": "billwerk",
|
28
|
+
"version": "0.6.0",
|
29
|
+
"description": "Billwerk provides a client mapping for accessing
|
30
|
+
the Pactas Itero API, making it easy to post your data to, and read your
|
31
|
+
data from your Pactas account.",
|
32
|
+
"main": "index.js",
|
33
|
+
"repository": "https://github.com/shipcloud/billwerk.git",
|
34
|
+
"author": "Marten Klitzke <m.klitzke@shipcloud.io>",
|
35
|
+
"license": "MIT",
|
36
|
+
"private": true
|
37
|
+
}
|
38
|
+
|
39
|
+
yarn manifest:
|
40
|
+
No manifest
|
41
|
+
|
42
|
+
Lockfile:
|
43
|
+
No lockfile
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pactas_itero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simon Fröhler
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday_middleware
|
@@ -16,22 +16,16 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '0.12'
|
19
|
+
version: '1.0'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '0.12'
|
26
|
+
version: '1.0'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
|
-
name:
|
28
|
+
name: rash_alt
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
36
30
|
requirements:
|
37
31
|
- - ">="
|
@@ -78,48 +72,77 @@ dependencies:
|
|
78
72
|
requirements:
|
79
73
|
- - "~>"
|
80
74
|
- !ruby/object:Gem::Version
|
81
|
-
version: 3.
|
75
|
+
version: 3.11.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.11.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.25.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 1.25.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-performance
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.13.2
|
82
104
|
type: :development
|
83
105
|
prerelease: false
|
84
106
|
version_requirements: !ruby/object:Gem::Requirement
|
85
107
|
requirements:
|
86
108
|
- - "~>"
|
87
109
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
110
|
+
version: 1.13.2
|
89
111
|
- !ruby/object:Gem::Dependency
|
90
112
|
name: simplecov
|
91
113
|
requirement: !ruby/object:Gem::Requirement
|
92
114
|
requirements:
|
93
115
|
- - "~>"
|
94
116
|
- !ruby/object:Gem::Version
|
95
|
-
version: 0.
|
117
|
+
version: 0.16.1
|
96
118
|
type: :development
|
97
119
|
prerelease: false
|
98
120
|
version_requirements: !ruby/object:Gem::Requirement
|
99
121
|
requirements:
|
100
122
|
- - "~>"
|
101
123
|
- !ruby/object:Gem::Version
|
102
|
-
version: 0.
|
124
|
+
version: 0.16.1
|
103
125
|
- !ruby/object:Gem::Dependency
|
104
126
|
name: webmock
|
105
127
|
requirement: !ruby/object:Gem::Requirement
|
106
128
|
requirements:
|
107
129
|
- - "~>"
|
108
130
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
131
|
+
version: '3.3'
|
110
132
|
type: :development
|
111
133
|
prerelease: false
|
112
134
|
version_requirements: !ruby/object:Gem::Requirement
|
113
135
|
requirements:
|
114
136
|
- - "~>"
|
115
137
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
138
|
+
version: '3.3'
|
117
139
|
description: |-
|
118
140
|
pactas_itero provides a client mapping for accessing
|
119
|
-
the Pactas Itero API, making it easy to post your data to,
|
141
|
+
the Pactas Itero API, making it easy to post your data to, and read your
|
120
142
|
data from your Pactas account.
|
121
143
|
email: simon@shipcloud.io
|
122
|
-
executables:
|
144
|
+
executables:
|
145
|
+
- setup
|
123
146
|
extensions: []
|
124
147
|
extra_rdoc_files: []
|
125
148
|
files:
|
@@ -129,6 +152,7 @@ files:
|
|
129
152
|
- LICENSE.txt
|
130
153
|
- README.md
|
131
154
|
- Rakefile
|
155
|
+
- bin/setup
|
132
156
|
- lib/pactas_itero.rb
|
133
157
|
- lib/pactas_itero/api.rb
|
134
158
|
- lib/pactas_itero/api/contracts.rb
|
@@ -145,10 +169,12 @@ files:
|
|
145
169
|
- lib/pactas_itero/ext/hash/camelize_keys.rb
|
146
170
|
- lib/pactas_itero/response/raise_error.rb
|
147
171
|
- lib/pactas_itero/version.rb
|
172
|
+
- pactas_itero.gemspec
|
148
173
|
- spec/fixtures/bearer_token.json
|
149
174
|
- spec/fixtures/commit_order_response.json
|
150
175
|
- spec/fixtures/contract.json
|
151
176
|
- spec/fixtures/contract_cancellation_preview_response.json
|
177
|
+
- spec/fixtures/contract_changes.json
|
152
178
|
- spec/fixtures/contract_termination_response.json
|
153
179
|
- spec/fixtures/contracts.json
|
154
180
|
- spec/fixtures/create_order_response.json
|
@@ -156,6 +182,7 @@ files:
|
|
156
182
|
- spec/fixtures/customer.json
|
157
183
|
- spec/fixtures/customers.json
|
158
184
|
- spec/fixtures/invoice.json
|
185
|
+
- spec/fixtures/invoice_download.pdf
|
159
186
|
- spec/fixtures/invoices.json
|
160
187
|
- spec/fixtures/order.json
|
161
188
|
- spec/fixtures/payment_transaction.json
|
@@ -171,11 +198,12 @@ files:
|
|
171
198
|
- spec/pactas_itero/client_spec.rb
|
172
199
|
- spec/pactas_itero_spec.rb
|
173
200
|
- spec/spec_helper.rb
|
201
|
+
- yarn-error.log
|
174
202
|
homepage: https://github.com/webionate/pactas_itero
|
175
203
|
licenses:
|
176
204
|
- MIT
|
177
205
|
metadata: {}
|
178
|
-
post_install_message:
|
206
|
+
post_install_message:
|
179
207
|
rdoc_options: []
|
180
208
|
require_paths:
|
181
209
|
- lib
|
@@ -183,16 +211,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
183
211
|
requirements:
|
184
212
|
- - ">="
|
185
213
|
- !ruby/object:Gem::Version
|
186
|
-
version: '2.
|
214
|
+
version: '2.6'
|
187
215
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
188
216
|
requirements:
|
189
217
|
- - ">="
|
190
218
|
- !ruby/object:Gem::Version
|
191
219
|
version: '0'
|
192
220
|
requirements: []
|
193
|
-
|
194
|
-
|
195
|
-
signing_key:
|
221
|
+
rubygems_version: 3.1.6
|
222
|
+
signing_key:
|
196
223
|
specification_version: 4
|
197
224
|
summary: pactas_itero provides a client mapping for accessing the Pactas Itero API.
|
198
225
|
test_files:
|
@@ -200,6 +227,7 @@ test_files:
|
|
200
227
|
- spec/fixtures/commit_order_response.json
|
201
228
|
- spec/fixtures/contract.json
|
202
229
|
- spec/fixtures/contract_cancellation_preview_response.json
|
230
|
+
- spec/fixtures/contract_changes.json
|
203
231
|
- spec/fixtures/contract_termination_response.json
|
204
232
|
- spec/fixtures/contracts.json
|
205
233
|
- spec/fixtures/create_order_response.json
|
@@ -207,6 +235,7 @@ test_files:
|
|
207
235
|
- spec/fixtures/customer.json
|
208
236
|
- spec/fixtures/customers.json
|
209
237
|
- spec/fixtures/invoice.json
|
238
|
+
- spec/fixtures/invoice_download.pdf
|
210
239
|
- spec/fixtures/invoices.json
|
211
240
|
- spec/fixtures/order.json
|
212
241
|
- spec/fixtures/payment_transaction.json
|