media_types-serialization 0.6.1 → 0.6.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
  SHA256:
3
- metadata.gz: c69f028ecd6e2bd2f4a872c7e79a3523ed4c4f812b42302f6ca9d8d3a7be608b
4
- data.tar.gz: 59be2e3a2e8751effc6b0475d1ad8e20ef403f6f043c7b14571d207376e71f44
3
+ metadata.gz: e372ca567cb0169a0f1b497cb3f287f8ad8d83aa6416eb5c6cfcdfe6d6ca3774
4
+ data.tar.gz: ae99ee2759337f6f196014556e508859bc0fa942e16acd9b1b582a7637bd3938
5
5
  SHA512:
6
- metadata.gz: 3f5c10e78085491f465101bd23b95e858a7eef377f23b3a3fbcec71b796706df80f0c4805a6f75247fb905ec439872cada44dc555b90b1d9a0722b2fe2a1eae0
7
- data.tar.gz: 07c2c707530e4d4e6f72d00f37199190174d5c8164c573b9fbb92f29d357aa0bdd4ca0518aa2711d330b24e8a902e6d1a471c3e76772a2c5cb1dfe9a74139881
6
+ metadata.gz: ba7aa0f87e556d4304ec040b1f875749ddf2ec580467458d19058294b3ac54816b5d24d5915a64303b0d0a275b2bb6d24fa5e195958267753c93cb7e2de6542a
7
+ data.tar.gz: f0fbb8190ebbde45274b43336a631ac5c0f0ee38ff1f336c3a308efd75e35b927c754eebc49b019179b05076f293b03316895d2d1ac36b8ea5d4fc5b6f64dfe6
@@ -43,7 +43,6 @@
43
43
  <orderEntry type="library" scope="PROVIDED" name="crass (v1.0.4, ruby-2.5.3-p105) [gem]" level="application" />
44
44
  <orderEntry type="library" scope="PROVIDED" name="erubi (v1.8.0, ruby-2.5.3-p105) [gem]" level="application" />
45
45
  <orderEntry type="library" scope="PROVIDED" name="globalid (v0.4.2, ruby-2.5.3-p105) [gem]" level="application" />
46
- <orderEntry type="library" scope="PROVIDED" name="http_headers-accept (v0.2.1, ruby-2.5.3-p105) [gem]" level="application" />
47
46
  <orderEntry type="library" scope="PROVIDED" name="http_headers-link (v0.2.1, ruby-2.5.3-p105) [gem]" level="application" />
48
47
  <orderEntry type="library" scope="PROVIDED" name="http_headers-utils (v0.2.0, ruby-2.5.3-p105) [gem]" level="application" />
49
48
  <orderEntry type="library" scope="PROVIDED" name="i18n (v1.6.0, ruby-2.5.3-p105) [gem]" level="application" />
@@ -58,7 +57,7 @@
58
57
  <orderEntry type="library" scope="PROVIDED" name="minitest (v5.11.3, ruby-2.5.3-p105) [gem]" level="application" />
59
58
  <orderEntry type="library" scope="PROVIDED" name="nio4r (v2.3.1, ruby-2.5.3-p105) [gem]" level="application" />
60
59
  <orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.10.3, ruby-2.5.3-p105) [gem]" level="application" />
61
- <orderEntry type="library" scope="PROVIDED" name="oj (v3.7.10, ruby-2.5.3-p105) [gem]" level="application" />
60
+ <orderEntry type="library" scope="PROVIDED" name="oj (v3.7.12, ruby-2.5.3-p105) [gem]" level="application" />
62
61
  <orderEntry type="library" scope="PROVIDED" name="rack (v2.0.6, ruby-2.5.3-p105) [gem]" level="application" />
63
62
  <orderEntry type="library" scope="PROVIDED" name="rack-test (v1.1.0, ruby-2.5.3-p105) [gem]" level="application" />
64
63
  <orderEntry type="library" scope="PROVIDED" name="rails (v5.2.3, ruby-2.5.3-p105) [gem]" level="application" />
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.2
4
+
5
+ - 🐛 Update `http_headers-accept`: 0.2.1 → 0.2.2
6
+
3
7
  ## 0.6.1
4
8
 
5
9
  - 🚨 Update nokogiri: 1.10.1 → 1.10.3
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- media_types-serialization (0.6.1)
4
+ media_types-serialization (0.6.2)
5
5
  actionpack (>= 4.0.0)
6
6
  activesupport (>= 4.0.0)
7
- http_headers-accept (< 1.0.0)
7
+ http_headers-accept (>= 0.2.2, < 1.0.0)
8
8
  http_headers-link (< 1.0.0)
9
9
  media_types (>= 0.6.0)
10
10
  oj (>= 3.5.0)
@@ -61,7 +61,7 @@ GEM
61
61
  erubi (1.8.0)
62
62
  globalid (0.4.2)
63
63
  activesupport (>= 4.2.0)
64
- http_headers-accept (0.2.1)
64
+ http_headers-accept (0.2.2)
65
65
  http_headers-utils (>= 0.2.0, < 1.0.0)
66
66
  http_headers-link (0.2.1)
67
67
  http_headers-utils (>= 0.2.0, < 1.0.0)
@@ -1,5 +1,5 @@
1
1
  module MediaTypes
2
2
  module Serialization
3
- VERSION = '0.6.1'
3
+ VERSION = '0.6.2'
4
4
  end
5
5
  end
@@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
39
39
  spec.add_dependency 'activesupport', '>= 4.0.0'
40
40
  spec.add_dependency 'media_types', '>= 0.6.0'
41
41
  spec.add_dependency 'oj', '>= 3.5.0'
42
- spec.add_dependency 'http_headers-accept', '< 1.0.0'
42
+ spec.add_dependency 'http_headers-accept', '>= 0.2.2', '< 1.0.0'
43
43
  spec.add_dependency 'http_headers-link', '< 1.0.0'
44
44
 
45
45
  spec.add_development_dependency 'awesome_print'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: media_types-serialization
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derk-Jan Karrenbeld
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-23 00:00:00.000000000 Z
11
+ date: 2019-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -70,6 +70,9 @@ dependencies:
70
70
  name: http_headers-accept
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.2.2
73
76
  - - "<"
74
77
  - !ruby/object:Gem::Version
75
78
  version: 1.0.0
@@ -77,6 +80,9 @@ dependencies:
77
80
  prerelease: false
78
81
  version_requirements: !ruby/object:Gem::Requirement
79
82
  requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 0.2.2
80
86
  - - "<"
81
87
  - !ruby/object:Gem::Version
82
88
  version: 1.0.0