boxxspring 2.4.7 → 2.4.8

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: 2c89e5dd272fad0f5e382eb1dfbd18728998a2ad
4
- data.tar.gz: ce159fe18b284590d386f5ae31ca45b8db423d38
3
+ metadata.gz: 37317379d499a20ac82af472b43a5e4cd222d743
4
+ data.tar.gz: 4bea0ec3c5e5cfa3305b043c47003746c286110e
5
5
  SHA512:
6
- metadata.gz: 06595c7a3ed80cb42e9275c82fb68618378ac38bf2550dfe971a0fc8d471aee3c2aea1565c8b862ae7944f4871ea0e9892a0cbe8ad37a589642f7dbd693b62bb
7
- data.tar.gz: 1924e17a5c7a7308537dae5e6bb0ffeb666d7a6051da96e688403e30da01902646d2c00f2f6c77d470ee32e7d9d32c333639ffc00af036c2c6778f2cbb519c88
6
+ metadata.gz: 452d5adebcacba9cd4ccf02cd08b7dce8d308ae60ce744a76109327695df2fd1ba1ce0660be2167722dffa552c4340224c2942569275079e9748299e61a7c221
7
+ data.tar.gz: 6dff90989e43df12193749734360e74e57eee164e57d9f1431941e7a1bc7010b4421e5bf2ff392338478a4ffae6eb9d6f4e70f1ae6cf050966a51115571097c9
@@ -0,0 +1,14 @@
1
+ module Boxxspring
2
+
3
+ class DailymotionSubscriptionMetadataTask < Task
4
+
5
+ field :source_name
6
+ field :source_url
7
+ field :provider
8
+ field :attribution_name
9
+ field :attribution_provider_uid
10
+ field :attribution_picture_url
11
+
12
+ end
13
+
14
+ end
@@ -0,0 +1,17 @@
1
+ module Boxxspring
2
+
3
+ class Stream < Base
4
+
5
+ field :id
6
+ field :name
7
+ field :created_at
8
+ field :updated_at
9
+ field :recording
10
+ field :recording_state
11
+ field :state
12
+ field :picture_id
13
+ field :uuid
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,21 @@
1
+ module Boxxspring
2
+
3
+ class Token < Base
4
+
5
+ field :type_name
6
+ field :id
7
+ field :uuid
8
+
9
+ field :created_at
10
+ field :updated_at
11
+ field :expires_at
12
+
13
+ field :property_id
14
+ field :subject_type_name
15
+ field :subject_id
16
+
17
+ has_one :subject
18
+
19
+ end
20
+
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.4.7'
2
+ VERSION = '2.4.8'
3
3
  end
data/lib/boxxspring.rb CHANGED
@@ -37,6 +37,7 @@ require 'boxxspring/resources/video_source_segment'
37
37
  require 'boxxspring/resources/artifact_relationship'
38
38
  require 'boxxspring/resources/artifact'
39
39
  require 'boxxspring/resources/artifact_locator'
40
+ require 'boxxspring/resources/token'
40
41
 
41
42
 
42
43
  # Services & Distributions
@@ -82,13 +83,18 @@ require 'boxxspring/resources/video_article_curation_task'
82
83
  require 'boxxspring/resources/youtube_subscription_metadata_task'
83
84
  require 'boxxspring/resources/twitter_subscription_metadata_task'
84
85
  require 'boxxspring/resources/vimeo_subscription_metadata_task'
86
+ require 'boxxspring/resources/dailymotion_subscription_metadata_task'
85
87
  require 'boxxspring/resources/artifact_curation_task'
86
88
  require 'boxxspring/resources/videos_curation_task'
87
89
  require 'boxxspring/resources/videos_branding_task'
88
90
  require 'boxxspring/resources/clip_creation_task'
89
91
 
90
-
91
-
92
+ ## Analytics
92
93
  require 'boxxspring/resources/sample'
93
94
  require 'boxxspring/resources/metric'
94
95
  require 'boxxspring/resources/analytics_media_sample'
96
+
97
+ ## Live
98
+ require 'boxxspring/resources/stream'
99
+
100
+
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.7
4
+ version: 2.4.8
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-10-15 00:00:00.000000000 Z
11
+ date: 2015-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -94,6 +94,7 @@ files:
94
94
  - lib/boxxspring/resources/dailymotion_channel_service.rb
95
95
  - lib/boxxspring/resources/dailymotion_distribution.rb
96
96
  - lib/boxxspring/resources/dailymotion_distribution_task.rb
97
+ - lib/boxxspring/resources/dailymotion_subscription_metadata_task.rb
97
98
  - lib/boxxspring/resources/distribution.rb
98
99
  - lib/boxxspring/resources/distribution_activity.rb
99
100
  - lib/boxxspring/resources/error.rb
@@ -117,6 +118,7 @@ files:
117
118
  - lib/boxxspring/resources/setting.rb
118
119
  - lib/boxxspring/resources/social_service.rb
119
120
  - lib/boxxspring/resources/sponsor.rb
121
+ - lib/boxxspring/resources/stream.rb
120
122
  - lib/boxxspring/resources/subscription.rb
121
123
  - lib/boxxspring/resources/subscription_ingestion_task.rb
122
124
  - lib/boxxspring/resources/task.rb
@@ -124,6 +126,7 @@ files:
124
126
  - lib/boxxspring/resources/theme.rb
125
127
  - lib/boxxspring/resources/theme_environment.rb
126
128
  - lib/boxxspring/resources/theme_template.rb
129
+ - lib/boxxspring/resources/token.rb
127
130
  - lib/boxxspring/resources/twitter_distribution.rb
128
131
  - lib/boxxspring/resources/twitter_distribution_task.rb
129
132
  - lib/boxxspring/resources/twitter_service.rb