boxxspring 2.4.5 → 2.4.6

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: 2d3610a8b95e595357acbecb7112800ff023ad07
4
- data.tar.gz: 71a1fdaa5fa1f0e6342a318da7777cd00b042099
3
+ metadata.gz: 79ba1971a27732a1da593c45d1792a1c21996ef4
4
+ data.tar.gz: bb46afd1819f0d814c44674cd034588edc3ce62f
5
5
  SHA512:
6
- metadata.gz: 18dd5880b55e54cacc28a8b110b3afbfbb5efcb80e092ea862860aaebdcaeae18353047c9c79d6db6e6d6d695e7da0a280f48510d9bf87b3f3650e44337f30d2
7
- data.tar.gz: 6c2a328a28fa36c0dc73c47712ecec9b5eba98b594bd5268ab90bafe60759ddc9ad73f70ea43cf11f62eab97cba43b2ef23dda978c68e9f2baf826e39f6697e0
6
+ metadata.gz: 56b8c4fb4175d8b31af4658c5e24b17aff3464384749cf1e11162afd838823b8a511494b760922b91c6c8f31d76e134e72b23e5f0620298be3814f0aff1038c3
7
+ data.tar.gz: 61ab37ca3d1bbf8b5cf5808604027b8957a71c11e50ff2bd2ff60f5f12c72366e654769e92930b2d44cb5b53833c9ac270c35bffbfec2792e691a874d86fd7f7
@@ -0,0 +1,11 @@
1
+ module Boxxspring
2
+
3
+ class ClipCreationTask < Task
4
+
5
+ field :in_point
6
+ field :out_point
7
+ field :duration
8
+ field :original_video_id
9
+
10
+ end
11
+ end
@@ -16,6 +16,7 @@ module Boxxspring
16
16
 
17
17
  field :auto_publish
18
18
  field :source_url
19
+ field :state
19
20
 
20
21
  has_many :artifacts
21
22
 
@@ -3,7 +3,8 @@ module Boxxspring
3
3
  class SubscriptionIngestionTask < Task
4
4
 
5
5
  field :provider
6
+ field :auto_publish
6
7
 
7
8
  end
8
9
 
9
- end
10
+ end
@@ -0,0 +1,9 @@
1
+ module Boxxspring
2
+
3
+ class TaskDependent < Base
4
+
5
+ field :id
6
+
7
+ end
8
+
9
+ end
@@ -15,6 +15,7 @@ module Boxxspring
15
15
  field :artifact_id
16
16
  field :artifact_slug
17
17
  field :artifact_ids
18
+ field :artifact_state
18
19
 
19
20
  end
20
21
 
@@ -44,7 +44,7 @@ module Boxxspring
44
44
  body = http_response.body;
45
45
  unless body.nil? || body.empty?
46
46
  response =
47
- MultiJson.decode( http_response.body ) rescue nil
47
+ JSON.parse( body ) rescue nil
48
48
  end
49
49
 
50
50
  response
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.4.5'
2
+ VERSION = '2.4.6'
3
3
  end
data/lib/boxxspring.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'active_support'
2
2
  require 'active_support/all'
3
- require 'multi_json'
4
3
  require 'fnv'
5
4
 
6
5
  require 'boxxspring/configuration'
@@ -63,6 +62,7 @@ require 'boxxspring/resources/branding_rule'
63
62
 
64
63
  ## Tasks
65
64
  require 'boxxspring/resources/task'
65
+ require 'boxxspring/resources/task_dependent'
66
66
  require 'boxxspring/resources/videos_ingestion_task'
67
67
  require 'boxxspring/resources/videos_interrogation_task'
68
68
  require 'boxxspring/resources/videos_picture_task'
@@ -84,6 +84,8 @@ require 'boxxspring/resources/vimeo_subscription_metadata_task'
84
84
  require 'boxxspring/resources/artifact_curation_task'
85
85
  require 'boxxspring/resources/videos_curation_task'
86
86
  require 'boxxspring/resources/videos_branding_task'
87
+ require 'boxxspring/resources/clip_creation_task'
88
+
87
89
 
88
90
 
89
91
  require 'boxxspring/resources/sample'
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxxspring
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.5
4
+ version: 2.4.6
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-09-11 00:00:00.000000000 Z
11
+ date: 2015-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: multi_json
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: activesupport
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -104,6 +90,7 @@ files:
104
90
  - lib/boxxspring/resources/boxxspring_distribution.rb
105
91
  - lib/boxxspring/resources/boxxspring_distribution_task.rb
106
92
  - lib/boxxspring/resources/branding_rule.rb
93
+ - lib/boxxspring/resources/clip_creation_task.rb
107
94
  - lib/boxxspring/resources/dailymotion_channel_service.rb
108
95
  - lib/boxxspring/resources/dailymotion_distribution.rb
109
96
  - lib/boxxspring/resources/dailymotion_distribution_task.rb
@@ -132,6 +119,7 @@ files:
132
119
  - lib/boxxspring/resources/sponsor.rb
133
120
  - lib/boxxspring/resources/subscription_ingestion_task.rb
134
121
  - lib/boxxspring/resources/task.rb
122
+ - lib/boxxspring/resources/task_dependent.rb
135
123
  - lib/boxxspring/resources/theme.rb
136
124
  - lib/boxxspring/resources/theme_environment.rb
137
125
  - lib/boxxspring/resources/theme_template.rb