siwapp-client 1.0.0 → 1.0.1
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/README.md +5 -5
- data/lib/siwapp-client.rb +1 -1
- data/lib/siwapp-client/api/default_api.rb +1 -1
- data/lib/siwapp-client/api_client.rb +1 -1
- data/lib/siwapp-client/api_error.rb +1 -1
- data/lib/siwapp-client/configuration.rb +1 -1
- data/lib/siwapp-client/models/invoice.rb +1 -1
- data/lib/siwapp-client/models/invoice_data.rb +1 -1
- data/lib/siwapp-client/models/invoice_data_attributes.rb +1 -1
- data/lib/siwapp-client/models/invoice_data_meta.rb +1 -1
- data/lib/siwapp-client/models/invoice_data_relationships.rb +1 -1
- data/lib/siwapp-client/models/invoice_data_relationships_items.rb +1 -1
- data/lib/siwapp-client/models/invoice_data_relationships_payments.rb +1 -1
- data/lib/siwapp-client/models/invoice_item.rb +1 -1
- data/lib/siwapp-client/models/invoice_item_attributes.rb +1 -1
- data/lib/siwapp-client/models/invoice_payment.rb +1 -1
- data/lib/siwapp-client/models/invoice_payment_attributes.rb +1 -1
- data/lib/siwapp-client/version.rb +2 -2
- data/siwapp-client.gemspec +2 -2
- data/spec/api/default_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/invoice_data_attributes_spec.rb +1 -1
- data/spec/models/invoice_data_meta_spec.rb +1 -1
- data/spec/models/invoice_data_relationships_items_spec.rb +1 -1
- data/spec/models/invoice_data_relationships_payments_spec.rb +1 -1
- data/spec/models/invoice_data_relationships_spec.rb +1 -1
- data/spec/models/invoice_data_spec.rb +1 -1
- data/spec/models/invoice_item_attributes_spec.rb +1 -1
- data/spec/models/invoice_item_spec.rb +1 -1
- data/spec/models/invoice_payment_attributes_spec.rb +1 -1
- data/spec/models/invoice_payment_spec.rb +1 -1
- data/spec/models/invoice_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 337e83fbff827261817d7fb1300c5ae39f67a09e
|
|
4
|
+
data.tar.gz: f632895d95358fb504c29d51fd9858414f1cd0a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98ac6b36ac1a24d434dab34e3ef787ab4234181290de8324bae22a6a81cc7125b3cb3cd14700035efe7328776626e278654e40d181859f8751a11232baf124ed
|
|
7
|
+
data.tar.gz: 9e12f065b1a128baa0c1a79715515756a1467b1f1be43973f278e5290f4afb86e6dd1b8474385019232a4483b8a2a1d74663b345351b328ab94bbadfea291097
|
data/README.md
CHANGED
|
@@ -6,8 +6,8 @@ Access Siwapp data via API.
|
|
|
6
6
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
|
-
- API version: 1.0.
|
|
10
|
-
- Package version: 1.0.
|
|
9
|
+
- API version: 1.0.1
|
|
10
|
+
- Package version: 1.0.1
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,15 +23,15 @@ gem build siwapp-client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./siwapp-client-1.0.
|
|
26
|
+
gem install ./siwapp-client-1.0.1.gem
|
|
27
27
|
```
|
|
28
|
-
(for development, run `gem install --dev ./siwapp-client-1.0.
|
|
28
|
+
(for development, run `gem install --dev ./siwapp-client-1.0.1.gem` to install the development dependencies)
|
|
29
29
|
|
|
30
30
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
31
31
|
|
|
32
32
|
Finally add this to the Gemfile:
|
|
33
33
|
|
|
34
|
-
gem 'siwapp-client', '~> 1.0.
|
|
34
|
+
gem 'siwapp-client', '~> 1.0.1'
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
|
37
37
|
|
data/lib/siwapp-client.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Access Siwapp data via API.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.0.
|
|
6
|
+
OpenAPI spec version: 1.0.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.2.3
|
|
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.2.3
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module SiwappClient
|
|
14
|
-
VERSION = "1.0.
|
|
14
|
+
VERSION = "1.0.1"
|
|
15
15
|
end
|
data/siwapp-client.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
#Access Siwapp data via API.
|
|
7
7
|
|
|
8
|
-
OpenAPI spec version: 1.0.
|
|
8
|
+
OpenAPI spec version: 1.0.1
|
|
9
9
|
|
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
11
|
Swagger Codegen version: 2.2.3
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
|
22
22
|
s.authors = ["Sology"]
|
|
23
23
|
s.email = ["wojtek@sology.eu"]
|
|
24
|
-
s.homepage = "
|
|
24
|
+
s.homepage = "https://github.com/Sology/siwapp-api-ruby-client"
|
|
25
25
|
s.summary = "Siwapp API Client Ruby Gem"
|
|
26
26
|
s.description = "Access Siwapp data via API."
|
|
27
27
|
# TODO uncommnet and update below with a proper license
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
data/spec/models/invoice_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: siwapp-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sology
|
|
@@ -240,7 +240,7 @@ files:
|
|
|
240
240
|
- spec/models/invoice_payment_spec.rb
|
|
241
241
|
- spec/models/invoice_spec.rb
|
|
242
242
|
- spec/spec_helper.rb
|
|
243
|
-
homepage:
|
|
243
|
+
homepage: https://github.com/Sology/siwapp-api-ruby-client
|
|
244
244
|
licenses: []
|
|
245
245
|
metadata: {}
|
|
246
246
|
post_install_message:
|