qwil_api 0.1.2 → 0.1.3

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: 676b6bf345cb3c4c17d36df56b3abc68ebc4a373
4
- data.tar.gz: 6af4d9f69969bf951e8540983ca505b977135492
3
+ metadata.gz: 4921ba5526742815735f77306192d83bb443fd76
4
+ data.tar.gz: d39395be712614241804fb709f9bb6b63e5697a5
5
5
  SHA512:
6
- metadata.gz: 3129fd316efab2db2a65b2086a9c39c2cab2c4bcd40ce9babc8198763fececae2d8e1f72870671fbdf74f1ac04318d14d97b8be66f0123b5e39392d881252ce4
7
- data.tar.gz: 7ae1c37aedfca501a5cd45a0111b3ec544bec9ff61b7bc82cb446039f3d54a441ae290589f4f8d7465eed0428072894db0e51db3ae03cb6a4449930fb4735bbc
6
+ metadata.gz: d7b31853e26f0372cddc17aeb6593328394671758b3f474f2aa4f58fdf15942f3b0a6710e1ac1bbadb645be66b13f8490d1e3952a3e43474554c2787d581b6d5
7
+ data.tar.gz: 792a614da3350989a776f3b182417db4f337f8be72b231b8a2facb0c1809738239ef85b3efcc7d722dd0f763c23509548e81aa8bb90dea13bbff19ce78611e8a
@@ -20,5 +20,5 @@ limitations under the License.
20
20
  =end
21
21
 
22
22
  module QwilAPI
23
- VERSION = "0.1.2"
23
+ VERSION = "0.1.3"
24
24
  end
data/lib/qwil_api.rb CHANGED
@@ -19,8 +19,6 @@ limitations under the License.
19
19
 
20
20
  =end
21
21
 
22
- file_path = File.expand_path('../', __FILE__)
23
-
24
22
  # Common files
25
23
  require 'qwil_api/api_client'
26
24
  require 'qwil_api/api_error'
@@ -28,11 +26,9 @@ require 'qwil_api/version'
28
26
  require 'qwil_api/configuration'
29
27
 
30
28
  # Models
31
- Dir.glob("#{ file_path }/qwil_api/models/*").each { |file| require file }
32
-
29
+ Dir.glob("/qwil_api/models/*").each { |file| require file }
33
30
  # APIs
34
- Dir.glob("#{ file_path }/qwil_api/api/*").each { |file| require file }
35
-
31
+ Dir.glob("/qwil_api/api/*").each { |file| require file }
36
32
 
37
33
  module QwilAPI
38
34
  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.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Tiplady
@@ -296,6 +296,7 @@ files:
296
296
  - lib/qwil_api/version.rb
297
297
  - qwil_api-0.1.0.gem
298
298
  - qwil_api-0.1.1.gem
299
+ - qwil_api-0.1.2.gem
299
300
  - qwil_api.gemspec
300
301
  - spec/api/accounts_api_spec.rb
301
302
  - spec/api/apitokenauth_api_spec.rb