boxxspring 2.1.1 → 2.1.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: 0be8421b40d41130cfeda34c01efff834418a751
4
- data.tar.gz: b148bf88e23a44832b3c2b36200ebd068c448ff4
3
+ metadata.gz: cab2dc28f0a1d1b90504b8f737dfc8ae66daa9b5
4
+ data.tar.gz: 6280224848f0dc0d9ba323a501ffc8d8b260fc84
5
5
  SHA512:
6
- metadata.gz: 6358f4752f69b684fac237514a8f9a3b7d5723800c70f14afa880d511b551598ab1c122771b89faa9ecc59d376795ba4cce99c9a6e8a5248d70dcd5479d03185
7
- data.tar.gz: 9517160038a589139d486f1c4159df02b817bc623c06dd586d83e09115b384980519673cc9d8f9a880a4d023f563e6c8d8d9ad78016ba458db6b623d8d1c22a4
6
+ metadata.gz: d9524d24452161b86193eedb3ff9a6f3ef8561218d752d7afcf501d2e67e2fb0cf6cb9b55709bd11e3dd872ec14196300267e1cc6b59f1e4b16d28602365631e
7
+ data.tar.gz: 9cd12e684a22f45ff607441ebc6b75035179ed913c093fbe84396464dfbad1dedd20f7ed0abe25cc9cf09e0e641f3415ca269504de749831a90ebe1a0db95646
@@ -7,7 +7,10 @@ module Boxxspring
7
7
 
8
8
  field :id
9
9
  field :code_name
10
+ field :storage_key
10
11
  field :filename
12
+ field :content_type
13
+ field :size
11
14
 
12
15
  end
13
16
 
@@ -9,6 +9,8 @@ module Boxxspring
9
9
  field :storage_key
10
10
  field :filename
11
11
  field :content_type
12
+ field :size
13
+ field :duration
12
14
  field :picture_id
13
15
 
14
16
  has_many :video_sources
@@ -5,11 +5,16 @@ module Boxxspring
5
5
  field :created_at
6
6
  field :updated_at
7
7
 
8
+ field :id
8
9
  field :video_id
9
10
  field :storage_key
11
+ field :name
12
+ field :content_type
10
13
  field :width
11
14
  field :height
12
15
 
16
+ has_many :segments
17
+
13
18
  end
14
19
 
15
20
  end
@@ -0,0 +1,18 @@
1
+ module Boxxspring
2
+
3
+ class VideoSourceSegment < Base
4
+
5
+ field :created_at
6
+ field :updated_at
7
+
8
+ field :id
9
+ field :video_source_id
10
+ field :storage_key
11
+ field :name
12
+ field :content_type
13
+ field :width
14
+ field :height
15
+
16
+ end
17
+
18
+ end
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.1.1'
2
+ VERSION = '2.1.2'
3
3
  end
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.1.1
4
+ version: 2.1.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: 2014-12-23 00:00:00.000000000 Z
11
+ date: 2015-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -114,6 +114,7 @@ files:
114
114
  - lib/boxxspring/resources/video.rb
115
115
  - lib/boxxspring/resources/video_card.rb
116
116
  - lib/boxxspring/resources/video_source.rb
117
+ - lib/boxxspring/resources/video_source_segment.rb
117
118
  - lib/boxxspring/resources/videos_picture_task.rb
118
119
  - lib/boxxspring/response.rb
119
120
  - lib/boxxspring/serializer.rb