trailer_vote-media_types 0.7.5 → 0.7.6

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: 3c3ec0a377a90a1b13a2988b34d20bb89ce8d33c
4
- data.tar.gz: 722b7f9ebfc0e9b069ca8a1479513bf40550c757
3
+ metadata.gz: 85797c001dd7476f67fe1d52d45edacff3378cce
4
+ data.tar.gz: fca038a2c3969e97e4a80944451b9ff62572fb02
5
5
  SHA512:
6
- metadata.gz: 832f468b54a653765acffda907007fbbfe4b3789d9f7a9318f1dba3b59229a12375b7c894c72f23db71bd4ab1effc6af3d5ec701a185ea416a50926cba51bc13
7
- data.tar.gz: c6063d87b3f0e000ddc2656a5680b7c107a7b3b94fa8ae48a75b75918ca3cb75891614f969ac3c2a078a0ac20403b957af6d6b57d7f99cffdca2b60f8e4d7b93
6
+ metadata.gz: 9367e291058285c432cd76205e769a35043610380606b02e2fbca2c21ff2b0832442679ba2f1993075c696b6050608948f5ba576d1725e6dcb73093e938ccf67
7
+ data.tar.gz: 3b8f1d5242c845b33e2b17908c919ed780740301fc3b444a54ccbb2d4658b9943299f7d4a8e8d550efdda266a1d4287fee6566a4d7554a93e80d375e8f7a8d24
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.7.6
2
+
3
+ - Allow `content_*` to be `nil`
4
+
1
5
  # 0.7.5
2
6
 
3
7
  - Add `content_language` and `content_region` to assets
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trailer_vote-media_types (0.7.5)
4
+ trailer_vote-media_types (0.7.6)
5
5
  media_types (>= 0.6.0, < 1)
6
6
 
7
7
  GEM
@@ -19,8 +19,8 @@ module TrailerVote
19
19
  attribute :source_url, AnyOf(Types::HttpUrl, String)
20
20
  attribute :expires_at, AllowNil(Types::Iso8601), optional: true
21
21
 
22
- attribute :content_language, String, optional: true
23
- attribute :content_region, String, optional: true
22
+ attribute :content_language, AllowNil(String), optional: true
23
+ attribute :content_region, AllowNil(String), optional: true
24
24
  end
25
25
 
26
26
  version_1_base = ::MediaTypes::Scheme.new do
@@ -21,8 +21,8 @@ module TrailerVote
21
21
  attribute :source_url, AnyOf(Types::HttpUrl, String)
22
22
  attribute :expires_at, AllowNil(Types::Iso8601), optional: true
23
23
 
24
- attribute :content_language, String, optional: true
25
- attribute :content_region, String, optional: true
24
+ attribute :content_language, AllowNil(String), optional: true
25
+ attribute :content_region, AllowNil(String), optional: true
26
26
  end
27
27
 
28
28
  version_1_base = ::MediaTypes::Scheme.new do
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TrailerVote
4
4
  module MediaTypes
5
- VERSION = '0.7.5'
5
+ VERSION = '0.7.6'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trailer_vote-media_types
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derk-Jan Karrenbeld