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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 748bb87f38586a2422139704aba680f1ff5b6138
4
- data.tar.gz: e0f3318d585ec96d382c91ae81e5d670e9465752
3
+ metadata.gz: 14790a2493208dbceac4288430d98021c37d6deb
4
+ data.tar.gz: 16249ae0b1e7d63f929b0a15768026cd1eb2fdb0
5
5
  SHA512:
6
- metadata.gz: c91fce2999b3da3dbf56abe9bbfc7f31021b5d8beb677d965cef627a8cb38426936020dd5a2772dcb555935a603f1a47ed21ecf36b2767a65b0bb8624cc4a160
7
- data.tar.gz: d1c4ba9b4505e2665a6298ed2ab412250fb0d1675bb267ed0fd1d9178635ecfc8d5a4b3eb261de2563c3bf9f9036eb52c895232405dff036e77ec3b13addb80c
6
+ metadata.gz: cb31c6e43e69507ca3037b3d57b15d5ca220a2d77c4c77dea9bb6bb65f6a1996b4373028a010186316b7099873aaeb3aaac182776df34c8a3a0e8eb09252e352
7
+ data.tar.gz: 04fc3662e7c9e6f5b5ca1f40e3ef56876b597a082c619764aa1d0f89b4d3cf0a6d6d81903dc4d276d743ffd539279a214a8de136a643a8037f07014f598a91d4
@@ -1,6 +1,8 @@
1
1
  module Boxxspring
2
2
 
3
3
  class AdvertisingCampaign < Base
4
+ field :id
5
+ field :property_id
4
6
  field :name
5
7
  field :url_pattern
6
8
  field :filter_id
@@ -29,6 +29,7 @@ module Boxxspring
29
29
 
30
30
  has_many :services
31
31
  has_many :settings
32
+
32
33
  def settings_content_by_name( name, default_result = nil )
33
34
  setting = self.settings.detect { | setting | setting.name == name }
34
35
  result = setting.nil? ? default_result : setting.content
@@ -11,7 +11,8 @@ module Boxxspring
11
11
  field :state
12
12
  field :picture_id
13
13
  field :uuid
14
- field :host_uuid
14
+ field :host_url
15
+ field :in_host_url
15
16
 
16
17
  end
17
18
 
@@ -2,6 +2,7 @@ module Boxxspring
2
2
 
3
3
  class TwitterDistributionActivity < Activity
4
4
  field :tweet_status
5
+ field :upload_video
5
6
  end
6
7
 
7
8
  end
@@ -4,6 +4,7 @@ module Boxxspring
4
4
 
5
5
  field :distribution_id
6
6
  field :tweet_status
7
+ field :upload_video
7
8
 
8
9
  end
9
10
 
@@ -0,0 +1,15 @@
1
+ module Boxxspring
2
+
3
+ class VideoReference < Base
4
+
5
+ field :id
6
+ field :type_name
7
+ field :created_at
8
+ field :updated_at
9
+ field :picture_id
10
+
11
+ has_many :video_source_references
12
+
13
+ end
14
+
15
+ end
@@ -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
@@ -16,6 +16,7 @@ module Boxxspring
16
16
  field :alternate_provider_url
17
17
  field :auto_publish
18
18
  field :artifact_id
19
+ field :artifact_type_name
19
20
  field :categories
20
21
  field :category_ids
21
22
 
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.7.3'
2
+ VERSION = '2.7.5'
3
3
  end
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.3
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-08-31 00:00:00.000000000 Z
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