boxxspring 2.7.3 → 2.7.5
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 +4 -4
- data/lib/boxxspring/resources/advertising_campaign.rb +2 -0
- data/lib/boxxspring/resources/property.rb +1 -0
- data/lib/boxxspring/resources/stream.rb +2 -1
- data/lib/boxxspring/resources/twitter_distribution_activity.rb +1 -0
- data/lib/boxxspring/resources/twitter_distribution_task.rb +1 -0
- data/lib/boxxspring/resources/video_reference.rb +15 -0
- data/lib/boxxspring/resources/video_reference_ingestion_task.rb +25 -0
- data/lib/boxxspring/resources/video_source_reference.rb +18 -0
- data/lib/boxxspring/resources/videos_ingestion_task.rb +1 -0
- data/lib/boxxspring/version.rb +1 -1
- data/lib/boxxspring.rb +6 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14790a2493208dbceac4288430d98021c37d6deb
|
4
|
+
data.tar.gz: 16249ae0b1e7d63f929b0a15768026cd1eb2fdb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb31c6e43e69507ca3037b3d57b15d5ca220a2d77c4c77dea9bb6bb65f6a1996b4373028a010186316b7099873aaeb3aaac182776df34c8a3a0e8eb09252e352
|
7
|
+
data.tar.gz: 04fc3662e7c9e6f5b5ca1f40e3ef56876b597a082c619764aa1d0f89b4d3cf0a6d6d81903dc4d276d743ffd539279a214a8de136a643a8037f07014f598a91d4
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Boxxspring
|
2
|
+
|
3
|
+
class VideoReferenceIngestionTask < Task
|
4
|
+
|
5
|
+
field :name
|
6
|
+
field :description
|
7
|
+
field :tags
|
8
|
+
field :originated_at
|
9
|
+
field :note
|
10
|
+
field :provider
|
11
|
+
field :provider_uid
|
12
|
+
field :provider_url
|
13
|
+
field :video_file_url
|
14
|
+
field :picture_file_url
|
15
|
+
field :alternate_provider
|
16
|
+
field :alternate_provider_url
|
17
|
+
field :auto_publish
|
18
|
+
field :artifact_id
|
19
|
+
field :categories
|
20
|
+
field :category_ids
|
21
|
+
field :source_references
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Boxxspring
|
2
|
+
|
3
|
+
class VideoSourceReference < Base
|
4
|
+
|
5
|
+
field :type_name
|
6
|
+
field :created_at
|
7
|
+
field :updated_at
|
8
|
+
field :name
|
9
|
+
field :id
|
10
|
+
field :created_at
|
11
|
+
field :updated_at
|
12
|
+
field :video_reference_id
|
13
|
+
field :url
|
14
|
+
field :content_type
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
data/lib/boxxspring/version.rb
CHANGED
data/lib/boxxspring.rb
CHANGED
@@ -55,6 +55,11 @@ require 'boxxspring/resources/video_track'
|
|
55
55
|
require 'boxxspring/resources/stream'
|
56
56
|
require 'boxxspring/resources/cue_point'
|
57
57
|
|
58
|
+
# Video References
|
59
|
+
require 'boxxspring/resources/video_source_reference'
|
60
|
+
require 'boxxspring/resources/video_reference'
|
61
|
+
|
62
|
+
|
58
63
|
# Services & Distributions
|
59
64
|
require 'boxxspring/resources/service'
|
60
65
|
require 'boxxspring/resources/setting'
|
@@ -112,3 +117,4 @@ require 'boxxspring/resources/videos_curation_task'
|
|
112
117
|
require 'boxxspring/resources/video_branding_task'
|
113
118
|
require 'boxxspring/resources/clip_creation_task'
|
114
119
|
require 'boxxspring/resources/stream_recording_ingestion_task'
|
120
|
+
require 'boxxspring/resources/video_reference_ingestion_task'
|
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.7.
|
4
|
+
version: 2.7.5
|
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: 2016-
|
11
|
+
date: 2016-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -150,7 +150,10 @@ files:
|
|
150
150
|
- lib/boxxspring/resources/video_branding_task.rb
|
151
151
|
- lib/boxxspring/resources/video_interrogation_task.rb
|
152
152
|
- lib/boxxspring/resources/video_picture.rb
|
153
|
+
- lib/boxxspring/resources/video_reference.rb
|
154
|
+
- lib/boxxspring/resources/video_reference_ingestion_task.rb
|
153
155
|
- lib/boxxspring/resources/video_source.rb
|
156
|
+
- lib/boxxspring/resources/video_source_reference.rb
|
154
157
|
- lib/boxxspring/resources/video_source_segment.rb
|
155
158
|
- lib/boxxspring/resources/video_text.rb
|
156
159
|
- lib/boxxspring/resources/video_track.rb
|