late-sdk 0.0.60 → 0.0.62

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
  SHA256:
3
- metadata.gz: eff2d60f03bbe12c65b784311a128a4b0e69c09410115f62445464b98a659a64
4
- data.tar.gz: 6aef520249acec55d86e80c79d4f92200b1e0d230ddb0932a86fbacf8ace21e5
3
+ metadata.gz: aa9802575aed3183746228814fdf768ace92993840b5f043be7cadbf2000a4b9
4
+ data.tar.gz: e78cd1dc27a11c6dd3d3771c2d8ba7636d3f9f69d6e7c6396a14dc2a3f4640af
5
5
  SHA512:
6
- metadata.gz: 4813869e6034610cdff07ae086853460b2949ea09e39c90eb9685a51cdab25d4efb9f674a15566b5de67fa838e2b534ed9b34abe724e44ca9f1d23c1e435f34a
7
- data.tar.gz: 4535ee2f4249c2421c4d2502694737b536ffe5becea53f3890263ca830fbfcd1960b7ab5ef22f8aff3993a76242a77e6392785eb81e73cdb6b3c059a3657cb26
6
+ metadata.gz: 5bf2633f43380c002a606e06f2c962afe2769b632f394eae9c703a33d8338986807d086986f79c1a913b25f090c76c8ab22fe586dbafdd994aeb9a36f3757569
7
+ data.tar.gz: 180dcb1e832f76a46a785f52b08f56eb60a383bdcef40bdd071722496c342357f459596125abcf88cea490a0ee504fc4e1ccfc8f1453dab90602ed705016fd74
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- late-sdk (0.1.0)
4
+ zernio-sdk (0.1.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -13,11 +13,13 @@ GEM
13
13
  coderay (1.1.3)
14
14
  date (3.5.1)
15
15
  diff-lcs (1.6.2)
16
- ethon (0.15.0)
16
+ ethon (0.18.0)
17
17
  ffi (>= 1.15.0)
18
+ logger
18
19
  ffi (1.17.3-x86_64-linux-gnu)
19
20
  io-console (0.8.2)
20
21
  jaro_winkler (1.5.6)
22
+ logger (1.7.0)
21
23
  method_source (1.1.0)
22
24
  parallel (1.27.0)
23
25
  parser (3.3.10.1)
@@ -61,19 +63,19 @@ GEM
61
63
  unicode-display_width (>= 1.4.0, < 1.6)
62
64
  ruby-progressbar (1.13.0)
63
65
  stringio (3.2.0)
64
- typhoeus (1.5.0)
65
- ethon (>= 0.9.0, < 0.16.0)
66
+ typhoeus (1.6.0)
67
+ ethon (>= 0.18.0)
66
68
  unicode-display_width (1.5.0)
67
69
 
68
70
  PLATFORMS
69
71
  x86_64-linux
70
72
 
71
73
  DEPENDENCIES
72
- late-sdk!
73
74
  pry-byebug
74
75
  rake (~> 13.0.1)
75
76
  rspec (~> 3.6, >= 3.6.0)
76
77
  rubocop (~> 0.66.0)
78
+ zernio-sdk!
77
79
 
78
80
  BUNDLED WITH
79
81
  2.4.19
@@ -0,0 +1,39 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ =begin
4
+ #Zernio API
5
+
6
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
7
+
8
+ The version of the OpenAPI document: 1.0.1
9
+ Contact: support@zernio.com
10
+ Generated by: https://openapi-generator.tech
11
+ Generator version: 7.19.0
12
+
13
+ =end
14
+
15
+ $:.push File.expand_path("../lib", __FILE__)
16
+ require "late-sdk/version"
17
+
18
+ Gem::Specification.new do |s|
19
+ s.name = "late-sdk"
20
+ s.version = Late::VERSION
21
+ s.platform = Gem::Platform::RUBY
22
+ s.authors = ["OpenAPI-Generator"]
23
+ s.email = ["support@zernio.com"]
24
+ s.homepage = "https://openapi-generator.tech"
25
+ s.summary = "Zernio API Ruby Gem"
26
+ s.description = "API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api "
27
+ s.license = "Unlicense"
28
+ s.required_ruby_version = ">= 2.7"
29
+ s.metadata = {}
30
+
31
+ s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
32
+
33
+ s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
34
+
35
+ s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
36
+ s.test_files = `find spec/*`.split("\n")
37
+ s.executables = []
38
+ s.require_paths = ["lib"]
39
+ end
data/late-sdk.gemspec CHANGED
@@ -16,7 +16,7 @@ $:.push File.expand_path("../lib", __FILE__)
16
16
  require "late-sdk/version"
17
17
 
18
18
  Gem::Specification.new do |s|
19
- s.name = "late-sdk"
19
+ s.name = "zernio-sdk"
20
20
  s.version = Late::VERSION
21
21
  s.platform = Gem::Platform::RUBY
22
22
  s.authors = ["OpenAPI-Generator"]
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Late
14
- VERSION = '0.0.60'
14
+ VERSION = '0.0.62'
15
15
  end
data/lib/late-sdk.rb CHANGED
@@ -624,3 +624,6 @@ module Late
624
624
  end
625
625
  end
626
626
  end
627
+
628
+ # Zernio alias for backwards compatibility during rebrand
629
+ Zernio = Late unless defined?(Zernio)
data/lib/zernio-sdk.rb ADDED
@@ -0,0 +1,5 @@
1
+ # Zernio SDK - forwards to late-sdk for backwards compatibility
2
+ require 'late-sdk'
3
+
4
+ # Alias the module so both Late and Zernio work
5
+ Zernio = Late unless defined?(Zernio)
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: late-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.60
4
+ version: 0.0.62
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -650,6 +650,7 @@ files:
650
650
  - docs/YouTubeScopeMissingResponse.md
651
651
  - docs/YouTubeScopeMissingResponseScopeStatus.md
652
652
  - git_push.sh
653
+ - late-sdk-legacy.gemspec
653
654
  - late-sdk.gemspec
654
655
  - lib/late-sdk.rb
655
656
  - lib/late-sdk/api/account_groups_api.rb
@@ -1243,6 +1244,7 @@ files:
1243
1244
  - lib/late-sdk/models/you_tube_scope_missing_response.rb
1244
1245
  - lib/late-sdk/models/you_tube_scope_missing_response_scope_status.rb
1245
1246
  - lib/late-sdk/version.rb
1247
+ - lib/zernio-sdk.rb
1246
1248
  - openapi.yaml
1247
1249
  - openapitools.json
1248
1250
  - spec/api/account_groups_api_spec.rb
@@ -1832,6 +1834,7 @@ files:
1832
1834
  - spec/models/you_tube_scope_missing_response_scope_status_spec.rb
1833
1835
  - spec/models/you_tube_scope_missing_response_spec.rb
1834
1836
  - spec/spec_helper.rb
1837
+ - zernio-sdk-0.0.62.gem
1835
1838
  homepage: https://openapi-generator.tech
1836
1839
  licenses:
1837
1840
  - Unlicense