api_six_client 1.4.13 → 1.4.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b658f38044ddf30200d96e23b83d29ae5870fec38700efe0dd9a30a3f05ed646
|
4
|
+
data.tar.gz: d993ad7255854cb71b6b4090731f348c8c8586b80acd547837d8dcb9eca03a8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af9592c06ce0fa0e12fd51493cf93b4389adb5af9fb86c1b2265aab4797dd21dc8edd62be4c0db3a52966d6d97f16df7764fac62f6c2c634cda81a8abfca9373
|
7
|
+
data.tar.gz: 3f8dd6ee850697dfa4c8fef68b287dd44c0e4a7923407b379820ae0ac357bd529e40c4fada2046f60960931626f86671de225f852829fcdee372ae15cf5dda25
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ApiSixClient
|
4
|
-
class
|
4
|
+
class BaseHidden < Base
|
5
5
|
protected
|
6
6
|
|
7
7
|
def deprecation_msg
|
@@ -9,7 +9,7 @@ module ApiSixClient
|
|
9
9
|
|
10
10
|
def override_defaults
|
11
11
|
@endpoint = ApiSixClient.config.endpoint_int
|
12
|
-
@auth_token = ApiSixClient.config.
|
12
|
+
@auth_token = ApiSixClient.config.auth_token_hidden
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
data/lib/api_six_client.rb
CHANGED
@@ -5,7 +5,7 @@ require 'api_six_client/config'
|
|
5
5
|
require 'api_six_client/base'
|
6
6
|
require 'api_six_client/base_v2'
|
7
7
|
require 'api_six_client/base_int'
|
8
|
-
require 'api_six_client/
|
8
|
+
require 'api_six_client/base_hidden'
|
9
9
|
require 'api_six_client/base_v2_int'
|
10
10
|
require 'api_six_client/errors'
|
11
11
|
|
@@ -30,8 +30,8 @@ module ApiSixClient
|
|
30
30
|
class Eno < BaseV2; end
|
31
31
|
class Uas < BaseV2; end
|
32
32
|
|
33
|
-
class OlcInt <
|
34
|
-
class AuthInt <
|
33
|
+
class OlcInt < BaseHidden; end
|
34
|
+
class AuthInt < BaseHidden; end
|
35
35
|
|
36
36
|
class PrjInt < BaseInt; end
|
37
37
|
class UasInt < BaseInt; end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: api_six_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eugene Dobrorodnov
|
@@ -42,7 +42,7 @@ files:
|
|
42
42
|
- bin/setup
|
43
43
|
- lib/api_six_client.rb
|
44
44
|
- lib/api_six_client/base.rb
|
45
|
-
- lib/api_six_client/
|
45
|
+
- lib/api_six_client/base_hidden.rb
|
46
46
|
- lib/api_six_client/base_int.rb
|
47
47
|
- lib/api_six_client/base_v2.rb
|
48
48
|
- lib/api_six_client/base_v2_int.rb
|