evostream-event 0.2.7.pre.47 → 0.2.7

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: 8cfc871e51eb351d8e48bc54430d1af139698d3e
4
- data.tar.gz: ec42c49f2151a6535a452951eaa40beaa82dc190
3
+ metadata.gz: a39fa490ad11fa8a64d9bde90469eb29e6e1ea88
4
+ data.tar.gz: de986e9e9da92a9e25bad5a7b14c136196b2e65a
5
5
  SHA512:
6
- metadata.gz: dae3cec594d4a3075ef73e008ec43ed587837d96730c554a78cd724a13b5040d3b71af92046380a7ce22a37e5349ed6437e656f0e674793e1f789c2566ec0f22
7
- data.tar.gz: ff2ed318bdfaa0b24418ef9c59fe99bce8b05d0b77d9a60c7c46f603802c994ff84597e07f8546d7cf1d9ecf222618571bd3f014ad41084d8e2377edc568d2d7
6
+ metadata.gz: 0aeb436dfd263696711e1be983d085f877b37e4b68494415f31705142deabfb193a381624a4d003d9353509eb8a6ef8e28d1bb7d3b9fa0857277921858e4be1f
7
+ data.tar.gz: 6d62136b952262cab6ac3e459bbdfdf800693b9a5a39d0b053d1311aeac8b8c7b6714ada917beeb84031d7c5ece5fe226411cc8fb3c3b2beca05667a0fec7c46
@@ -3,7 +3,7 @@
3
3
  module Evostream
4
4
  # Send an action to evostream server
5
5
  class Action
6
- def initialize(payload = {})
6
+ def initialize(payload)
7
7
  @payload = payload
8
8
  end
9
9
 
@@ -18,4 +18,3 @@ end
18
18
  require 'evostream/event/commands/create'
19
19
  require 'evostream/event/commands/destroy'
20
20
  require 'evostream/event/commands/push_stream'
21
- require 'evostream/event/commands/list_config'
@@ -11,7 +11,7 @@ module Evostream
11
11
  end
12
12
 
13
13
  def cmd
14
- "pushStream?params=#{Base64.strict_encode64(command.join)}"
14
+ "pushStream?params=#{Base64.urlsafe_encode64(command.join)}"
15
15
  end
16
16
 
17
17
  private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evostream-event
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7.pre.47
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - VAILLANT Jeremy
@@ -269,7 +269,6 @@ files:
269
269
  - lib/evostream/event/commands/create/dash.rb
270
270
  - lib/evostream/event/commands/create/hls.rb
271
271
  - lib/evostream/event/commands/destroy.rb
272
- - lib/evostream/event/commands/list_config.rb
273
272
  - lib/evostream/event/commands/push_stream.rb
274
273
  - lib/evostream/event/event.rb
275
274
  - lib/evostream/event/event/events.rb
@@ -338,9 +337,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
338
337
  version: '0'
339
338
  required_rubygems_version: !ruby/object:Gem::Requirement
340
339
  requirements:
341
- - - ">"
340
+ - - ">="
342
341
  - !ruby/object:Gem::Version
343
- version: 1.3.1
342
+ version: '0'
344
343
  requirements: []
345
344
  rubyforge_project:
346
345
  rubygems_version: 2.4.5
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Evostream
4
- module Commands
5
- # Returns a list with all push/pull configurations.
6
- #
7
- # Whenever the pullStream or pushStream interfaces are called, a record
8
- # containing the details of the pull or push is created in the
9
- # pullpushconfig.xml file. Then, the next time the EMS is started, the
10
- # pullpushconfig.xml file is read, and the EMS attempts to reconnect all of
11
- # the previous pulled or pushed streams.
12
- #
13
- # This function has no parameters.
14
- class ListConfig < Command
15
- def initialize(commands = {})
16
- super(commands)
17
- end
18
-
19
- def cmd
20
- 'listConfig'
21
- end
22
- end
23
- end
24
- end