boxxspring 2.8.1 → 2.8.2

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: b72c68e4ac9769f661a78f6cbd5bde533224e4db
4
- data.tar.gz: eb132704918f054423a01f88bd75591766b576c9
3
+ metadata.gz: 487938bf8edf77a880b23cff1e0ce02052ad1fe0
4
+ data.tar.gz: c3b63a2c16aa9103aabc30549c2dcd9ca2d0bc3b
5
5
  SHA512:
6
- metadata.gz: 266c81c9dea43ca7f6f8038a7532cf90fb0fe97d94d484f49b621e17f012f1848ecfb72bfcea92be9962c6b0cb0237f66c61e3f9c49c93d42d360e544189fc42
7
- data.tar.gz: 3f39f37195dea736ef867cf250ed1c57049773eabd3b8974a1c7714c8db7970ecf710d9ba742cd934309f894b55399a541e371cf3708273824582591cfae4c72
6
+ metadata.gz: 68eeeeb6e540d34077b73416e8722b26043dc8c2b8203bb673372e9e10eb481bf8dace6593649f7bc480e0c2612ba8f96832ff2db61b9cdba13cef11eb87937b
7
+ data.tar.gz: 8353089ba23ae9d9c4e2c4902e057acf0ed4b88c76b4cd7ff8ce4ef6aa6e9e707bb98ac59f2f5b3944994f24d53c190aa1da60f25741b7b7540902be0e82ba14
data/lib/boxxspring.rb CHANGED
@@ -92,6 +92,7 @@ require 'boxxspring/resources/youtube_stream_distribution_activity'
92
92
  require 'boxxspring/resources/dailymotion_stream_distribution_activity'
93
93
  require 'boxxspring/resources/rtmp_stream_distribution_activity'
94
94
  require 'boxxspring/resources/facebook_distribution_deletion_activity'
95
+ require 'boxxspring/resources/youtube_distribution_deletion_activity'
95
96
  require 'boxxspring/resources/facebook_stream_distribution_activity'
96
97
  require 'boxxspring/resources/facebook_page_distribution_activity'
97
98
  require 'boxxspring/resources/twitter_distribution_activity'
@@ -106,6 +107,7 @@ require 'boxxspring/resources/videos_picture_task'
106
107
  require 'boxxspring/resources/feed_generation_task'
107
108
  require 'boxxspring/resources/subscription_ingestion_task'
108
109
  require 'boxxspring/resources/facebook_distribution_deletion_task'
110
+ require 'boxxspring/resources/youtube_distribution_deletion_task'
109
111
  require 'boxxspring/resources/facebook_page_distribution_task'
110
112
  require 'boxxspring/resources/facebook_stream_distribution_task'
111
113
  require 'boxxspring/resources/rtmp_stream_distribution_task'
@@ -6,6 +6,7 @@ module Boxxspring
6
6
  field :post_stream_description
7
7
  field :stream_key
8
8
  field :stream_url
9
+ field :stream_type
9
10
  end
10
11
 
11
12
  end
@@ -4,6 +4,7 @@ module Boxxspring
4
4
  field :post_name
5
5
  field :post_message
6
6
  field :post_stream_description
7
+ field :stream_type
7
8
  field :distribution_id
8
9
  end
9
10
 
@@ -0,0 +1,9 @@
1
+ module Boxxspring
2
+
3
+ class YoutubeDistributionDeletionActivity < Activity
4
+ field :youtube_broadcast_id
5
+ field :youtube_stream_id
6
+ field :distribution_artifact_locator_id
7
+ end
8
+
9
+ end
@@ -0,0 +1,10 @@
1
+ module Boxxspring
2
+
3
+ class YoutubeDistributionDeletionTask < Task
4
+ field :distribution_id
5
+ field :youtube_broadcast_id
6
+ field :youtube_stream_id
7
+ field :distribution_artifact_locator_id
8
+ end
9
+
10
+ end
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.8.1'
2
+ VERSION = '2.8.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxxspring
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.1
4
+ version: 2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kristoph Cichocki-Romanov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-03 00:00:00.000000000 Z
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -176,6 +176,8 @@ files:
176
176
  - lib/boxxspring/resources/youtube_channel_service.rb
177
177
  - lib/boxxspring/resources/youtube_distribution.rb
178
178
  - lib/boxxspring/resources/youtube_distribution_activity.rb
179
+ - lib/boxxspring/resources/youtube_distribution_deletion_activity.rb
180
+ - lib/boxxspring/resources/youtube_distribution_deletion_task.rb
179
181
  - lib/boxxspring/resources/youtube_distribution_task.rb
180
182
  - lib/boxxspring/resources/youtube_stream_distribution_activity.rb
181
183
  - lib/boxxspring/resources/youtube_stream_distribution_task.rb