qwil_api 0.1.1 → 0.1.2

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
  SHA1:
3
- metadata.gz: f188d236d8303ce5951cb1dc40f52e933f3db3cc
4
- data.tar.gz: fb59f81608396ba07b5afe03e00da2d64c2505c6
3
+ metadata.gz: 676b6bf345cb3c4c17d36df56b3abc68ebc4a373
4
+ data.tar.gz: 6af4d9f69969bf951e8540983ca505b977135492
5
5
  SHA512:
6
- metadata.gz: 6d79b0e1a4c255b21ed89f2e016e14e272dac5c2868858dcdb57ec09084a80f2d545751e72849c0a61ee2e4bf4269f65b2d27d992247bf9f3105c556c3e2345e
7
- data.tar.gz: ce2ba5afea8e610c497ad2fe68d561d6fc146d0d5cf77bca849de14e1a9f5625edfe462743ed22f5a46351bbf0be872beae02142e404d00b4d5106fb18e9cf3e
6
+ metadata.gz: 3129fd316efab2db2a65b2086a9c39c2cab2c4bcd40ce9babc8198763fececae2d8e1f72870671fbdf74f1ac04318d14d97b8be66f0123b5e39392d881252ce4
7
+ data.tar.gz: 7ae1c37aedfca501a5cd45a0111b3ec544bec9ff61b7bc82cb446039f3d54a441ae290589f4f8d7465eed0428072894db0e51db3ae03cb6a4449930fb4735bbc
@@ -20,5 +20,5 @@ limitations under the License.
20
20
  =end
21
21
 
22
22
  module QwilAPI
23
- VERSION = "0.1.1"
23
+ VERSION = "0.1.2"
24
24
  end
data/lib/qwil_api.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  =begin
2
2
  #No descripton provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
3
3
 
4
- OpenAPI spec version:
4
+ OpenAPI spec version:
5
5
 
6
6
  Generated by: https://github.com/swagger-api/swagger-codegen.git
7
7
 
@@ -19,6 +19,8 @@ limitations under the License.
19
19
 
20
20
  =end
21
21
 
22
+ file_path = File.expand_path('../', __FILE__)
23
+
22
24
  # Common files
23
25
  require 'qwil_api/api_client'
24
26
  require 'qwil_api/api_error'
@@ -26,11 +28,11 @@ require 'qwil_api/version'
26
28
  require 'qwil_api/configuration'
27
29
 
28
30
  # Models
29
- require 'qwil_api/models/membership_serializer'
30
- require 'qwil_api/models/write_membership_serializer'
31
+ Dir.glob("#{ file_path }/qwil_api/models/*").each { |file| require file }
31
32
 
32
33
  # APIs
33
- require 'qwil_api/api/memberships_api'
34
+ Dir.glob("#{ file_path }/qwil_api/api/*").each { |file| require file }
35
+
34
36
 
35
37
  module QwilAPI
36
38
  class << self
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qwil_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Tiplady
@@ -295,6 +295,7 @@ files:
295
295
  - lib/qwil_api/models/write_user_serializer.rb
296
296
  - lib/qwil_api/version.rb
297
297
  - qwil_api-0.1.0.gem
298
+ - qwil_api-0.1.1.gem
298
299
  - qwil_api.gemspec
299
300
  - spec/api/accounts_api_spec.rb
300
301
  - spec/api/apitokenauth_api_spec.rb