gdsapi-v2-ruby 0.1.4 → 0.1.5

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: 682cc9ed559e0b6ac5d9af4074e5341b4b5d7c3a
4
- data.tar.gz: 62b93de7d2a463f4a77d818068570ae0a066301c
3
+ metadata.gz: 6ff2a9d3f5c0b12dda418eb41bc168c4f4513e44
4
+ data.tar.gz: 4e5473b5c5a5981b4c4cb6c62f63d25305d3b6a2
5
5
  SHA512:
6
- metadata.gz: 430c0da15dab2bb293d415e9b30f740048ebe3e1a118c33d3c34b15805104ea54371ea8c00df23c4212421a2380da81257aa85ff6d17c82ed2c6a8c14f2c372e
7
- data.tar.gz: 681427cad7b61007cf738f8017dc01498714da4f4afb89d76cd6ab8635dbad071e9cc87efd7b4700f5b04b96c34ba09876979c7ed09c2643ba76f300d9d058dd
6
+ metadata.gz: 4cde6b233ead8939f2ef22ace8f9e57774de549731051515bc4a8d2da076b645cdee4355ed577375d564cd253c5d147d101dc514932f74f9b52da72d9592cf79
7
+ data.tar.gz: b5017a76bea5b7dcf8b715c169a118c58d8bb7e05990663ba70ad39c9165988ca163e351b1b1a41de2fbb86d8434e2c7b83e79bc4e4ad614be5420a9454544f9
@@ -1,5 +1,3 @@
1
- require_relative 'utils/parse_utils'
2
-
3
1
  module Gdsapi
4
2
  module Methods
5
3
  class BaseMethod
@@ -1,5 +1,3 @@
1
- require_relative '../structs'
2
-
3
1
  ## Country struct
4
2
  ## Used when syncing geodata with GDS
5
3
  ## See [Gdsapi::Methods::GetCountries] for details
@@ -1,3 +1,3 @@
1
1
  module Gdsapi
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
data/lib/gdsapi.rb CHANGED
@@ -1,4 +1,17 @@
1
- Dir[File.expand_path('gdsapi/**/*.rb', __dir__)].each { |file| require file }
1
+ require 'gdsapi/client'
2
+ require 'gdsapi/methods'
3
+ require 'gdsapi/requester'
4
+ require 'gdsapi/structs'
5
+ require 'gdsapi/version'
6
+ require 'gdsapi/methods/utils/parse_utils'
7
+ require 'gdsapi/methods/base_method'
8
+ require 'gdsapi/methods/get_available_trips'
9
+ require 'gdsapi/methods/get_countries'
10
+ require 'gdsapi/methods/get_locations'
11
+ require 'gdsapi/methods/get_points'
12
+ require 'gdsapi/structs/country'
13
+ require 'gdsapi/structs/location'
14
+ require 'gdsapi/structs/point'
2
15
 
3
16
  # This provides core package manifesto
4
17
  ## Possible error definitions are provided here
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gdsapi-v2-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Yurchenkov