boxxspring 2.7.1 → 2.7.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: 08e10b88a970585c251cb814c1bfd5dbd9a3add1
4
- data.tar.gz: bd6ce8d3f22f3e1437b04023236a6f2dd0f60ba4
3
+ metadata.gz: ad1fa3da3867fdce806fdff3d7b0901c257ed211
4
+ data.tar.gz: 63d44e9107af2b5b17df8efb9a268c59a61307ab
5
5
  SHA512:
6
- metadata.gz: 86518856e9ae67760a70f102b92073b646faba14ea0c499aa5b38d354643cadb36ce7c8409765b569c6b6bbd9c220afc1c70ed49eded6632eaad27046ce84e42
7
- data.tar.gz: ec9af84da085e3c93fa6017c65d093dd5e5904373ae6ef4f288bcc2646092e93cbed7fbf6584b9c6eb0d79fdd9d47e1e645d319c449e0eec24153117c202dfd5
6
+ metadata.gz: 309423c723583cc0f6bd04f9e7d0679875e1b947d9c47d705e5e72509c839004ec122c90015059b958dcd6aabd9e59d9806c80d18f52d649f0940276b996d845
7
+ data.tar.gz: af29269902e5956fdcde923861e60446b55cf0d368fd0a75cac60a079a8c44a40c092ec1662b6b457f808cc0bbb18d073ff31b6ca8549fd7d52f3338475368ad
@@ -11,6 +11,7 @@ module Boxxspring
11
11
  field :state
12
12
  field :message
13
13
  field :execute_at
14
+ field :expire_at
14
15
 
15
16
  has_one :artifact_locator
16
17
  end
@@ -11,7 +11,6 @@ module Boxxspring
11
11
  field :originated_at
12
12
 
13
13
  field :state
14
- field :original
15
14
  field :uid
16
15
  field :property_id
17
16
 
@@ -35,8 +34,6 @@ module Boxxspring
35
34
  field :artifact_ids
36
35
  field :picture_id
37
36
  field :sponsor_id
38
- field :template_id
39
- field :sponsor_id
40
37
 
41
38
  has_one :attribution
42
39
 
@@ -0,0 +1,11 @@
1
+ module Boxxspring
2
+
3
+ class CuePoint < Base
4
+ field :id
5
+ field :video_id
6
+ field :timecode
7
+
8
+ has_one :video
9
+ end
10
+
11
+ end
@@ -11,6 +11,7 @@ module Boxxspring
11
11
  field :state
12
12
  field :picture_id
13
13
  field :uuid
14
+ field :host_uuid
14
15
 
15
16
  end
16
17
 
@@ -6,6 +6,7 @@ module Boxxspring
6
6
  field :description
7
7
  field :file_name
8
8
  field :artifact_id
9
+ field :video_file_url
9
10
 
10
11
  end
11
12
 
@@ -12,8 +12,6 @@ module Boxxspring
12
12
  field :last_polled_at
13
13
  field :time_to_live
14
14
 
15
- field :original
16
-
17
15
  field :auto_publish
18
16
  field :url
19
17
  field :state
@@ -15,6 +15,7 @@ module Boxxspring
15
15
  field :started_at
16
16
  field :ended_at
17
17
  field :execute_at
18
+ field :expire_at
18
19
 
19
20
  has_one :property
20
21
 
@@ -35,6 +35,7 @@ module Boxxspring
35
35
  has_many :tracks
36
36
  has_many :pictures
37
37
  has_many :texts
38
+ has_many :cue_points
38
39
 
39
40
  end
40
41
 
@@ -15,7 +15,6 @@ module Boxxspring
15
15
  field :alternate_provider
16
16
  field :alternate_provider_url
17
17
  field :auto_publish
18
- field :video_article_artifact_id
19
18
  field :artifact_id
20
19
  field :categories
21
20
  field :category_ids
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.7.1'
2
+ VERSION = '2.7.2'
3
3
  end
data/lib/boxxspring.rb CHANGED
@@ -52,6 +52,7 @@ require 'boxxspring/resources/video_source_segment'
52
52
  require 'boxxspring/resources/video_text'
53
53
  require 'boxxspring/resources/video_track'
54
54
  require 'boxxspring/resources/stream'
55
+ require 'boxxspring/resources/cue_point'
55
56
 
56
57
  # Services & Distributions
57
58
  require 'boxxspring/resources/service'
@@ -74,7 +75,6 @@ require 'boxxspring/resources/boxxspring_distribution'
74
75
  require 'boxxspring/resources/branding_rule'
75
76
 
76
77
  ## Activities
77
-
78
78
  require 'boxxspring/resources/activity'
79
79
  require 'boxxspring/resources/dailymotion_distribution_activity'
80
80
  require 'boxxspring/resources/verizon_distribution_activity'
@@ -102,7 +102,6 @@ require 'boxxspring/resources/boxxspring_update_task'
102
102
  require 'boxxspring/resources/youtube_subscription_task'
103
103
  require 'boxxspring/resources/twitter_subscription_task'
104
104
  require 'boxxspring/resources/vimeo_subscription_task'
105
- require 'boxxspring/resources/video_article_curation_task'
106
105
  require 'boxxspring/resources/youtube_subscription_metadata_task'
107
106
  require 'boxxspring/resources/twitter_subscription_metadata_task'
108
107
  require 'boxxspring/resources/vimeo_subscription_metadata_task'
@@ -112,8 +111,3 @@ require 'boxxspring/resources/videos_curation_task'
112
111
  require 'boxxspring/resources/video_branding_task'
113
112
  require 'boxxspring/resources/clip_creation_task'
114
113
  require 'boxxspring/resources/stream_recording_ingestion_task'
115
-
116
- ## Analytics
117
- require 'boxxspring/resources/sample'
118
- require 'boxxspring/resources/metric'
119
- require 'boxxspring/resources/analytics_media_sample'
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.1
4
+ version: 2.7.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: 2016-06-03 00:00:00.000000000 Z
11
+ date: 2016-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -85,7 +85,6 @@ files:
85
85
  - lib/boxxspring/resources/advertising_freewheel_advertisement.rb
86
86
  - lib/boxxspring/resources/advertising_liverail_advertisement.rb
87
87
  - lib/boxxspring/resources/advertising_vast_advertisement.rb
88
- - lib/boxxspring/resources/analytics_media_sample.rb
89
88
  - lib/boxxspring/resources/artifact.rb
90
89
  - lib/boxxspring/resources/artifact_curation_task.rb
91
90
  - lib/boxxspring/resources/artifact_locator.rb
@@ -99,6 +98,7 @@ files:
99
98
  - lib/boxxspring/resources/boxxspring_update_task.rb
100
99
  - lib/boxxspring/resources/branding_rule.rb
101
100
  - lib/boxxspring/resources/clip_creation_task.rb
101
+ - lib/boxxspring/resources/cue_point.rb
102
102
  - lib/boxxspring/resources/dailymotion_channel_service.rb
103
103
  - lib/boxxspring/resources/dailymotion_distribution.rb
104
104
  - lib/boxxspring/resources/dailymotion_distribution_activity.rb
@@ -117,12 +117,10 @@ files:
117
117
  - lib/boxxspring/resources/forbidden_error.rb
118
118
  - lib/boxxspring/resources/legacy_service.rb
119
119
  - lib/boxxspring/resources/malformed_parameter_error.rb
120
- - lib/boxxspring/resources/metric.rb
121
120
  - lib/boxxspring/resources/missing_parameter_error.rb
122
121
  - lib/boxxspring/resources/not_found_error.rb
123
122
  - lib/boxxspring/resources/picture.rb
124
123
  - lib/boxxspring/resources/property.rb
125
- - lib/boxxspring/resources/sample.rb
126
124
  - lib/boxxspring/resources/service.rb
127
125
  - lib/boxxspring/resources/setting.rb
128
126
  - lib/boxxspring/resources/social_service.rb
@@ -148,7 +146,6 @@ files:
148
146
  - lib/boxxspring/resources/verizon_distribution_activity.rb
149
147
  - lib/boxxspring/resources/verizon_distribution_task.rb
150
148
  - lib/boxxspring/resources/video.rb
151
- - lib/boxxspring/resources/video_article_curation_task.rb
152
149
  - lib/boxxspring/resources/video_branding_task.rb
153
150
  - lib/boxxspring/resources/video_interrogation_task.rb
154
151
  - lib/boxxspring/resources/video_picture.rb
@@ -195,3 +192,4 @@ signing_key:
195
192
  specification_version: 4
196
193
  summary: Bedrocket Media Ventrures Boxxspring property API.
197
194
  test_files: []
195
+ has_rdoc:
@@ -1,47 +0,0 @@
1
- module Boxxspring
2
- class AnalyticsMediaSample < Base
3
-
4
- field :id
5
-
6
- field :created_at
7
- field :updated_at
8
-
9
- field :type_name
10
-
11
- field :at
12
- field :participant_id
13
- field :artifact_id
14
- field :context_uuid
15
- field :session_uuid
16
- field :ip_address
17
- field :user_agent
18
- field :device_type
19
- field :device_name
20
- field :operating_system_name
21
- field :operating_system_version
22
- field :user_agent_name
23
- field :user_agent_version
24
- field :geography_country
25
- field :geography_locality
26
- field :referer_url
27
- field :referer_type
28
- field :time_total
29
- field :interation_time_total
30
- field :interaction_count
31
- field :play_count
32
- field :play_time_total
33
- field :play_time_maximum
34
- field :play_time_maximum_percentage
35
- field :pause_count
36
- field :pause_time_total
37
- field :wait_count
38
- field :wait_time_total
39
- field :ad_count
40
- field :ad_time_total
41
- field :visitor_uuid
42
- field :referer_domain
43
- field :url
44
- field :url_domain
45
-
46
- end
47
- end
@@ -1,17 +0,0 @@
1
- module Boxxspring
2
- class Metric < Base
3
-
4
- field :id
5
-
6
- field :created_at
7
- field :updated_at
8
-
9
- field :type_name
10
- field :name
11
- field :period
12
- field :segment
13
-
14
- has_many :samples
15
-
16
- end
17
- end
@@ -1,23 +0,0 @@
1
- module Boxxspring
2
- class Sample < Base
3
-
4
- field :id
5
-
6
- field :created_at
7
- field :updated_at
8
-
9
- field :type_name
10
- field :at
11
- field :sum
12
- field :average
13
- field :count
14
- field :median
15
-
16
- field :metric_id
17
- field :artifact_id
18
-
19
- has_one :metric
20
- has_one :artifact
21
-
22
- end
23
- end
@@ -1,22 +0,0 @@
1
- module Boxxspring
2
-
3
- class VideoArticleCurationTask < Task
4
-
5
- field :video_title
6
- field :video_description
7
- field :video_picture_url
8
- field :video_provider_uid
9
- field :video_provider_url
10
- field :video_originated_at
11
- field :provider
12
- field :attribution_name
13
- field :attribution_provider_uid
14
- field :attribution_picture_url
15
- field :artifact_id
16
- field :artifact_slug
17
- field :artifact_ids
18
- field :artifact_state
19
-
20
- end
21
-
22
- end