boxxspring 2.4.8 → 2.4.10

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
  SHA1:
3
- metadata.gz: 37317379d499a20ac82af472b43a5e4cd222d743
4
- data.tar.gz: 4bea0ec3c5e5cfa3305b043c47003746c286110e
3
+ metadata.gz: d18789603f03e1cc96473a678c35b6fd99febb81
4
+ data.tar.gz: f8946873274d586884bf3265048eb383c2dcec16
5
5
  SHA512:
6
- metadata.gz: 452d5adebcacba9cd4ccf02cd08b7dce8d308ae60ce744a76109327695df2fd1ba1ce0660be2167722dffa552c4340224c2942569275079e9748299e61a7c221
7
- data.tar.gz: 6dff90989e43df12193749734360e74e57eee164e57d9f1431941e7a1bc7010b4421e5bf2ff392338478a4ffae6eb9d6f4e70f1ae6cf050966a51115571097c9
6
+ metadata.gz: a5d99f80209f64bdb9f420fb535d90513072183b66e21e3ee12f72541c2f6af2a10b6d8ef9e9d23e146f6b254e5fd31a7c21f7f0bf5f5094b3dfd2164766faf0
7
+ data.tar.gz: eb9a1772ebf70137b95e946990d7e4f94172efe941f93f6db07ef6d369e2b5eb7477d6891938a411bf41e71b247e2e121c8506ad46ea7be7972c098130857de4
@@ -6,6 +6,8 @@ module Boxxspring
6
6
  field :updated_at
7
7
 
8
8
  field :id
9
+ field :uuid
10
+ field :operator
9
11
 
10
12
  has_many :filter_criteria
11
13
 
@@ -8,8 +8,8 @@ module Boxxspring
8
8
  field :id
9
9
  field :filter_id
10
10
  field :condition
11
-
12
- has_many :artifacts
11
+ field :field
12
+ field :values
13
13
 
14
14
  end
15
15
 
@@ -32,6 +32,9 @@ module Boxxspring
32
32
  field :audio_channel_layout
33
33
 
34
34
  has_many :video_sources
35
+ has_many :tracks
36
+
37
+ has_many :texts
35
38
 
36
39
  end
37
40
 
@@ -0,0 +1,23 @@
1
+ module Boxxspring
2
+
3
+ class VideoText < Base
4
+
5
+ field :created_at
6
+ field :updated_at
7
+
8
+ field :id
9
+ field :filename
10
+ field :storage_key
11
+ field :size
12
+ field :content_type
13
+
14
+ field :kind
15
+ field :language
16
+ field :label
17
+
18
+ field :video_id
19
+ has_one :video
20
+
21
+ end
22
+
23
+ end
@@ -0,0 +1,21 @@
1
+ module Boxxspring
2
+
3
+ class VideoTrack < Base
4
+
5
+ field :created_at
6
+ field :updated_at
7
+
8
+ field :id
9
+ field :storage_key
10
+ field :content_type
11
+
12
+ field :kind
13
+ field :language
14
+ field :label
15
+
16
+ field :video_id
17
+ field :video_text_id
18
+
19
+ end
20
+
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.4.8'
2
+ VERSION = '2.4.10'
3
3
  end
data/lib/boxxspring.rb CHANGED
@@ -19,7 +19,6 @@ require 'boxxspring/resources/attribute_error'
19
19
  require 'boxxspring/resources/malformed_parameter_error'
20
20
  require 'boxxspring/resources/not_found_error'
21
21
 
22
-
23
22
  require 'boxxspring/resources/property'
24
23
  require 'boxxspring/resources/picture'
25
24
  require 'boxxspring/resources/user_agent'
@@ -34,12 +33,13 @@ require 'boxxspring/resources/advertising_liverail_advertisement'
34
33
  require 'boxxspring/resources/video'
35
34
  require 'boxxspring/resources/video_source'
36
35
  require 'boxxspring/resources/video_source_segment'
36
+ require 'boxxspring/resources/video_text'
37
+ require 'boxxspring/resources/video_track'
37
38
  require 'boxxspring/resources/artifact_relationship'
38
39
  require 'boxxspring/resources/artifact'
39
40
  require 'boxxspring/resources/artifact_locator'
40
41
  require 'boxxspring/resources/token'
41
42
 
42
-
43
43
  # Services & Distributions
44
44
  require 'boxxspring/resources/service'
45
45
  require 'boxxspring/resources/setting'
@@ -61,7 +61,6 @@ require 'boxxspring/resources/boxxspring_distribution'
61
61
  require 'boxxspring/resources/distribution_activity'
62
62
  require 'boxxspring/resources/branding_rule'
63
63
 
64
-
65
64
  ## Tasks
66
65
  require 'boxxspring/resources/task'
67
66
  require 'boxxspring/resources/task_dependent'
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.4.8
4
+ version: 2.4.10
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: 2015-11-20 00:00:00.000000000 Z
11
+ date: 2015-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -139,6 +139,8 @@ files:
139
139
  - lib/boxxspring/resources/video_article_curation_task.rb
140
140
  - lib/boxxspring/resources/video_source.rb
141
141
  - lib/boxxspring/resources/video_source_segment.rb
142
+ - lib/boxxspring/resources/video_text.rb
143
+ - lib/boxxspring/resources/video_track.rb
142
144
  - lib/boxxspring/resources/videos_branding_task.rb
143
145
  - lib/boxxspring/resources/videos_curation_task.rb
144
146
  - lib/boxxspring/resources/videos_ingestion_task.rb