streem 0.1.2 → 0.1.3

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: a6a1fac0600c8e56851bd65c2a504c9de3e8dc04361b5950d5c9cb98768791f8
4
- data.tar.gz: 3de842f9ea27cac3198a6e2c50d41f004a9c656271c1287c6a305a60ea2f6613
3
+ metadata.gz: bf1f43816387f77ea56d35c8b4ec9abcf89e5cd9e25beef2dd73683be6f7fddb
4
+ data.tar.gz: 8ab8963b3d88fc2c953205638a849bcafd2eeab587c54769524f2f934a843dde
5
5
  SHA512:
6
- metadata.gz: fc78689a8abb606e66567a766145cc7652ca7e8749dcc86aeb4bfdd7b68dbc6fc044c5f57e98c6c3695506c6a24aefb8900f07b067e4f9132a8b0b31bf8da5c7
7
- data.tar.gz: 69c9e8ea0514cad27ca4749a4d9d116466f5da1c8e2d73fa5d5ecbb0324691b2dcc81a96509a84a6786ba7aede4738cd30cba5ebbaefb89b3aea21ea1139abc4
6
+ metadata.gz: 88fc2406e1af43bf78e22240603751eb00f32282e93f07ebf00cc03d0ddd9218103205cd82e64f696498a8d02c16cf7873872a78477b802053e499779c32cc6a
7
+ data.tar.gz: 401e6df51afab943142fa5ed25e66a6cf9376aa0748985c2ff3a2f095c2c1bf4298b4f3817b05e94844dafdeb73a44efa37b2b23636d770b9fbad4bc176c0f23
@@ -1,8 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "streem/version"
4
+ require "streem/token_builder"
5
+
3
6
  # Provides access to the Streem SDK. Start by calling Streem.init() with your API Key ID and Secret
4
- class Streem
5
- VERSION = "0.1.2"
7
+ module Streem
6
8
  @api_key_id = nil
7
9
  @api_key_secret = nil
8
10
  @api_environment = "prod-us"
@@ -3,7 +3,7 @@
3
3
  require "base64"
4
4
  require "jose"
5
5
 
6
- class Streem
6
+ module Streem
7
7
  # Class for building Streem Tokens. Configure the token using the available setter methods, and finalize the token
8
8
  # by calling `builder.token`. This returns a string representation of the token, that can be provided to the client.
9
9
  class TokenBuilder
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Streem
4
+ VERSION = "0.1.3"
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: streem
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
  - Streem Dev
@@ -33,7 +33,8 @@ extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
35
  - src/streem.rb
36
- - src/token_builder.rb
36
+ - src/streem/token_builder.rb
37
+ - src/streem/version.rb
37
38
  homepage: https://streem.pro
38
39
  licenses: []
39
40
  metadata: