dear-inventory-ruby 0.1.9 → 0.1.10
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +4 -4
- data/dear-inventory-ruby.gemspec +1 -1
- data/docs/Contact.md +4 -0
- data/docs/Customer.md +2 -0
- data/lib/dear-inventory-ruby.rb +1 -1
- data/lib/dear-inventory-ruby/api/inventory_api.rb +1 -1
- data/lib/dear-inventory-ruby/api_client.rb +8 -6
- data/lib/dear-inventory-ruby/api_error.rb +1 -1
- data/lib/dear-inventory-ruby/configuration.rb +1 -1
- data/lib/dear-inventory-ruby/models/account.rb +1 -1
- data/lib/dear-inventory-ruby/models/accounts.rb +1 -1
- data/lib/dear-inventory-ruby/models/address.rb +1 -1
- data/lib/dear-inventory-ruby/models/contact.rb +22 -2
- data/lib/dear-inventory-ruby/models/currency_code.rb +1 -1
- data/lib/dear-inventory-ruby/models/customer.rb +14 -2
- data/lib/dear-inventory-ruby/models/customers.rb +1 -1
- data/lib/dear-inventory-ruby/models/dimensions_unit.rb +1 -1
- data/lib/dear-inventory-ruby/models/error.rb +1 -1
- data/lib/dear-inventory-ruby/models/me.rb +1 -1
- data/lib/dear-inventory-ruby/models/payment_term.rb +1 -1
- data/lib/dear-inventory-ruby/models/payment_terms.rb +1 -1
- data/lib/dear-inventory-ruby/models/success.rb +1 -1
- data/lib/dear-inventory-ruby/models/tax.rb +1 -1
- data/lib/dear-inventory-ruby/models/tax_component.rb +1 -1
- data/lib/dear-inventory-ruby/models/taxes.rb +1 -1
- data/lib/dear-inventory-ruby/models/weight_unit.rb +1 -1
- data/lib/dear-inventory-ruby/version.rb +2 -2
- data/spec/api/inventory_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/account_spec.rb +1 -1
- data/spec/models/accounts_spec.rb +1 -1
- data/spec/models/address_spec.rb +1 -1
- data/spec/models/contact_spec.rb +13 -1
- data/spec/models/currency_code_spec.rb +1 -1
- data/spec/models/customer_spec.rb +7 -1
- data/spec/models/customers_spec.rb +1 -1
- data/spec/models/dimensions_unit_spec.rb +1 -1
- data/spec/models/error_spec.rb +1 -1
- data/spec/models/me_spec.rb +1 -1
- data/spec/models/payment_term_spec.rb +1 -1
- data/spec/models/payment_terms_spec.rb +1 -1
- data/spec/models/success_spec.rb +1 -1
- data/spec/models/tax_component_spec.rb +1 -1
- data/spec/models/tax_spec.rb +1 -1
- data/spec/models/taxes_spec.rb +1 -1
- data/spec/models/weight_unit_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c201f6b324bf74ee44d1049342dd858cd6db92262aa2a98471e78a8db6b4bcbf
|
4
|
+
data.tar.gz: 304fc570a210489e24c1574d40f71d1975961e66dab65aa42807d0909a62730d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd7c10e2e6c7a5fafd8288cd1cd59ea7548229a978f5076df85e505e53c4e13f2af24ded11100c1e5ce8b4b6fe1ecbd8ac7f79ee242af27fefa39abddf3758ea
|
7
|
+
data.tar.gz: 3c4d88bddd1cf9fc255a71c35ce15857abd3f49e297747c96ccecd31ed65f44061c2dd18700a967b7f0cc7d921c006c4655538f42ffd3c1a8597f3ace5f6363b
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [0.1.10] - 2020-09-04
|
6
|
+
|
7
|
+
- Add some fields to Contact and Customer models.
|
8
|
+
- Update OpenAPI Generator version 4.3.1
|
9
|
+
|
5
10
|
## [0.1.9] - 2020-04-12
|
6
11
|
|
7
12
|
- Add new endpoint and model: Me
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ This specifing endpoints for DEAR Inventory API
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 2.0.0
|
10
|
-
- Package version: 0.1.
|
10
|
+
- Package version: 0.1.10
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://www.nnhan.me](https://www.nnhan.me)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build dear-inventory-ruby.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./dear-inventory-ruby-0.1.
|
27
|
+
gem install ./dear-inventory-ruby-0.1.10.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./dear-inventory-ruby-0.1.
|
30
|
+
(for development, run `gem install --dev ./dear-inventory-ruby-0.1.10.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'dear-inventory-ruby', '~> 0.1.
|
36
|
+
gem 'dear-inventory-ruby', '~> 0.1.10'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/dear-inventory-ruby.gemspec
CHANGED
data/docs/Contact.md
CHANGED
@@ -6,7 +6,9 @@ Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**id** | **String** | If passed in PUT method, entry will be searched by id, found entry will be updated, otherwise created | [optional]
|
8
8
|
**name** | **String** | Name of Contact |
|
9
|
+
**job_title** | **String** | Job Title | [optional]
|
9
10
|
**phone** | **String** | Phone | [optional]
|
11
|
+
**mobile_phone** | **String** | Mobile Phone | [optional]
|
10
12
|
**fax** | **String** | Fax | [optional]
|
11
13
|
**email** | **String** | Email | [optional]
|
12
14
|
**website** | **String** | Website | [optional]
|
@@ -21,7 +23,9 @@ require 'DearInventoryRuby'
|
|
21
23
|
|
22
24
|
instance = DearInventoryRuby::Contact.new(id: nil,
|
23
25
|
name: nil,
|
26
|
+
job_title: nil,
|
24
27
|
phone: nil,
|
28
|
+
mobile_phone: nil,
|
25
29
|
fax: nil,
|
26
30
|
email: nil,
|
27
31
|
website: nil,
|
data/docs/Customer.md
CHANGED
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
|
|
20
20
|
**comments** | **String** | Comments | [optional]
|
21
21
|
**tax_number** | **String** | Tax number | [optional]
|
22
22
|
**credit_limit** | **Float** | Credit limit | [optional]
|
23
|
+
**is_on_credit_hold** | **Boolean** | boolean to indicate if a customer is on credit hold | [optional] [default to false]
|
23
24
|
**tags** | **String** | Tags string | [optional]
|
24
25
|
**attribute_set** | **String** | AttributeSet name | [optional]
|
25
26
|
**additional_attribute1** | **String** | Additional attribute 1 value | [optional]
|
@@ -57,6 +58,7 @@ instance = DearInventoryRuby::Customer.new(id: nil,
|
|
57
58
|
comments: nil,
|
58
59
|
tax_number: nil,
|
59
60
|
credit_limit: nil,
|
61
|
+
is_on_credit_hold: nil,
|
60
62
|
tags: nil,
|
61
63
|
attribute_set: nil,
|
62
64
|
additional_attribute1: nil,
|
data/lib/dear-inventory-ruby.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -287,11 +287,13 @@ module DearInventoryRuby
|
|
287
287
|
tempfile.write(chunk)
|
288
288
|
end
|
289
289
|
request.on_complete do |response|
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
290
|
+
if tempfile
|
291
|
+
tempfile.close
|
292
|
+
@config.logger.info "Temp file written to #{tempfile.path}, please copy the file to a proper folder "\
|
293
|
+
"with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file "\
|
294
|
+
"will be deleted automatically with GC. It's also recommended to delete the temp file "\
|
295
|
+
"explicitly with `tempfile.delete`"
|
296
|
+
end
|
295
297
|
end
|
296
298
|
end
|
297
299
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -20,9 +20,15 @@ module DearInventoryRuby
|
|
20
20
|
# Name of Contact
|
21
21
|
attr_accessor :name
|
22
22
|
|
23
|
+
# Job Title
|
24
|
+
attr_accessor :job_title
|
25
|
+
|
23
26
|
# Phone
|
24
27
|
attr_accessor :phone
|
25
28
|
|
29
|
+
# Mobile Phone
|
30
|
+
attr_accessor :mobile_phone
|
31
|
+
|
26
32
|
# Fax
|
27
33
|
attr_accessor :fax
|
28
34
|
|
@@ -46,7 +52,9 @@ module DearInventoryRuby
|
|
46
52
|
{
|
47
53
|
:'id' => :'ID',
|
48
54
|
:'name' => :'Name',
|
55
|
+
:'job_title' => :'JobTitle',
|
49
56
|
:'phone' => :'Phone',
|
57
|
+
:'mobile_phone' => :'MobilePhone',
|
50
58
|
:'fax' => :'Fax',
|
51
59
|
:'email' => :'Email',
|
52
60
|
:'website' => :'Website',
|
@@ -61,7 +69,9 @@ module DearInventoryRuby
|
|
61
69
|
{
|
62
70
|
:'id' => :'String',
|
63
71
|
:'name' => :'String',
|
72
|
+
:'job_title' => :'String',
|
64
73
|
:'phone' => :'String',
|
74
|
+
:'mobile_phone' => :'String',
|
65
75
|
:'fax' => :'String',
|
66
76
|
:'email' => :'String',
|
67
77
|
:'website' => :'String',
|
@@ -100,10 +110,18 @@ module DearInventoryRuby
|
|
100
110
|
self.name = attributes[:'name']
|
101
111
|
end
|
102
112
|
|
113
|
+
if attributes.key?(:'job_title')
|
114
|
+
self.job_title = attributes[:'job_title']
|
115
|
+
end
|
116
|
+
|
103
117
|
if attributes.key?(:'phone')
|
104
118
|
self.phone = attributes[:'phone']
|
105
119
|
end
|
106
120
|
|
121
|
+
if attributes.key?(:'mobile_phone')
|
122
|
+
self.mobile_phone = attributes[:'mobile_phone']
|
123
|
+
end
|
124
|
+
|
107
125
|
if attributes.key?(:'fax')
|
108
126
|
self.fax = attributes[:'fax']
|
109
127
|
end
|
@@ -252,7 +270,9 @@ module DearInventoryRuby
|
|
252
270
|
self.class == o.class &&
|
253
271
|
id == o.id &&
|
254
272
|
name == o.name &&
|
273
|
+
job_title == o.job_title &&
|
255
274
|
phone == o.phone &&
|
275
|
+
mobile_phone == o.mobile_phone &&
|
256
276
|
fax == o.fax &&
|
257
277
|
email == o.email &&
|
258
278
|
website == o.website &&
|
@@ -270,7 +290,7 @@ module DearInventoryRuby
|
|
270
290
|
# Calculates hash code according to all attributes.
|
271
291
|
# @return [Integer] Hash code
|
272
292
|
def hash
|
273
|
-
[id, name, phone, fax, email, website, comment, default, include_in_email].hash
|
293
|
+
[id, name, job_title, phone, mobile_phone, fax, email, website, comment, default, include_in_email].hash
|
274
294
|
end
|
275
295
|
|
276
296
|
# Builds the object from hash
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -61,6 +61,9 @@ module DearInventoryRuby
|
|
61
61
|
# Credit limit
|
62
62
|
attr_accessor :credit_limit
|
63
63
|
|
64
|
+
# boolean to indicate if a customer is on credit hold
|
65
|
+
attr_accessor :is_on_credit_hold
|
66
|
+
|
64
67
|
# Tags string
|
65
68
|
attr_accessor :tags
|
66
69
|
|
@@ -147,6 +150,7 @@ module DearInventoryRuby
|
|
147
150
|
:'comments' => :'Comments',
|
148
151
|
:'tax_number' => :'TaxNumber',
|
149
152
|
:'credit_limit' => :'CreditLimit',
|
153
|
+
:'is_on_credit_hold' => :'IsOnCreditHold',
|
150
154
|
:'tags' => :'Tags',
|
151
155
|
:'attribute_set' => :'AttributeSet',
|
152
156
|
:'additional_attribute1' => :'AdditionalAttribute1',
|
@@ -184,6 +188,7 @@ module DearInventoryRuby
|
|
184
188
|
:'comments' => :'String',
|
185
189
|
:'tax_number' => :'String',
|
186
190
|
:'credit_limit' => :'Float',
|
191
|
+
:'is_on_credit_hold' => :'Boolean',
|
187
192
|
:'tags' => :'String',
|
188
193
|
:'attribute_set' => :'String',
|
189
194
|
:'additional_attribute1' => :'String',
|
@@ -287,6 +292,12 @@ module DearInventoryRuby
|
|
287
292
|
self.credit_limit = attributes[:'credit_limit']
|
288
293
|
end
|
289
294
|
|
295
|
+
if attributes.key?(:'is_on_credit_hold')
|
296
|
+
self.is_on_credit_hold = attributes[:'is_on_credit_hold']
|
297
|
+
else
|
298
|
+
self.is_on_credit_hold = false
|
299
|
+
end
|
300
|
+
|
290
301
|
if attributes.key?(:'tags')
|
291
302
|
self.tags = attributes[:'tags']
|
292
303
|
end
|
@@ -467,6 +478,7 @@ module DearInventoryRuby
|
|
467
478
|
comments == o.comments &&
|
468
479
|
tax_number == o.tax_number &&
|
469
480
|
credit_limit == o.credit_limit &&
|
481
|
+
is_on_credit_hold == o.is_on_credit_hold &&
|
470
482
|
tags == o.tags &&
|
471
483
|
attribute_set == o.attribute_set &&
|
472
484
|
additional_attribute1 == o.additional_attribute1 &&
|
@@ -493,7 +505,7 @@ module DearInventoryRuby
|
|
493
505
|
# Calculates hash code according to all attributes.
|
494
506
|
# @return [Integer] Hash code
|
495
507
|
def hash
|
496
|
-
[id, name, status, currency, payment_term, account_receivable, revenue_account, tax_rule, price_tier, carrier, sales_representative, location, discount, comments, tax_number, credit_limit, tags, attribute_set, additional_attribute1, additional_attribute2, additional_attribute3, additional_attribute4, additional_attribute5, additional_attribute6, additional_attribute7, additional_attribute8, additional_attribute9, additional_attribute10, last_modified_on, addresses, contacts].hash
|
508
|
+
[id, name, status, currency, payment_term, account_receivable, revenue_account, tax_rule, price_tier, carrier, sales_representative, location, discount, comments, tax_number, credit_limit, is_on_credit_hold, tags, attribute_set, additional_attribute1, additional_attribute2, additional_attribute3, additional_attribute4, additional_attribute5, additional_attribute6, additional_attribute7, additional_attribute8, additional_attribute9, additional_attribute10, last_modified_on, addresses, contacts].hash
|
497
509
|
end
|
498
510
|
|
499
511
|
# Builds the object from hash
|
@@ -6,10 +6,10 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
module DearInventoryRuby
|
14
|
-
VERSION = '0.1.
|
14
|
+
VERSION = '0.1.10'
|
15
15
|
end
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
data/spec/models/account_spec.rb
CHANGED
data/spec/models/address_spec.rb
CHANGED
data/spec/models/contact_spec.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -44,12 +44,24 @@ describe 'Contact' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "job_title"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "phone"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
59
|
+
describe 'test attribute "mobile_phone"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
53
65
|
describe 'test attribute "fax"' do
|
54
66
|
it 'should work' do
|
55
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
7
7
|
Contact: nnhansg@gmail.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -132,6 +132,12 @@ describe 'Customer' do
|
|
132
132
|
end
|
133
133
|
end
|
134
134
|
|
135
|
+
describe 'test attribute "is_on_credit_hold"' do
|
136
|
+
it 'should work' do
|
137
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
135
141
|
describe 'test attribute "tags"' do
|
136
142
|
it 'should work' do
|
137
143
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/error_spec.rb
CHANGED
data/spec/models/me_spec.rb
CHANGED
data/spec/models/success_spec.rb
CHANGED
data/spec/models/tax_spec.rb
CHANGED
data/spec/models/taxes_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dear-inventory-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nhan Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04
|
11
|
+
date: 2020-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -28,42 +28,42 @@ dependencies:
|
|
28
28
|
name: json
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 2.1.0
|
34
31
|
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
33
|
version: '2.1'
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.1.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 2.1.0
|
44
41
|
- - "~>"
|
45
42
|
- !ruby/object:Gem::Version
|
46
43
|
version: '2.1'
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.1.0
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rspec
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- - ">="
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 3.6.0
|
54
51
|
- - "~>"
|
55
52
|
- !ruby/object:Gem::Version
|
56
53
|
version: '3.6'
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 3.6.0
|
57
57
|
type: :development
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- - ">="
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: 3.6.0
|
64
61
|
- - "~>"
|
65
62
|
- !ruby/object:Gem::Version
|
66
63
|
version: '3.6'
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 3.6.0
|
67
67
|
description: DEAR Inventory Ruby SDK generated from DEAR-OpenAPI Spec 3.0 for https://inventory.dearsystems.com
|
68
68
|
email:
|
69
69
|
- nnhansg@gmail.com
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
167
|
+
rubygems_version: 3.1.2
|
168
168
|
signing_key:
|
169
169
|
specification_version: 4
|
170
170
|
summary: DEAR Inventory Ruby SDK generated from DEAR-OpenAPI Spec 3.0 for https://inventory.dearsystems.com
|