tpm-key_attestation 0.7.0 → 0.8.0

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
  SHA256:
3
- metadata.gz: 060cbdfedb9cd4519611fb5d388035957e57adafaad608de0d98c4448a4dda51
4
- data.tar.gz: 34dd516159fe8fe5d761c8fbbd263b43db23ed2976911fc36dc847b54d18b5e7
3
+ metadata.gz: 535e681d5138dba02fee04f040ba56dc32aec3cfc0e120317fd9037e3af5ef48
4
+ data.tar.gz: 2aa3fd555c148bffc4be80a98a18bc53083ede8b249ac5c51bca7150f4f10ad7
5
5
  SHA512:
6
- metadata.gz: 7f4da510b00f75763df1aa60bcdac51ae261be6384756f6476f4810314e9b61bc545c5d9c61b6aa93e8b09c94ba22fe2d436a085b788eea0ee0af226be006878
7
- data.tar.gz: b4a4fb61c649f023033c5938171ec4d57e1df0044a40d1e994210f2da0ffaa6bd36439492526378ce9b9f433ced1d39ec9f30d0cb948c102243129c172c1b817
6
+ metadata.gz: 5ba4bb439bede1e2c2eb7bcd4d26de281643c8cc9ed7e1f29b60e5f75ae8efdae671eaa3f2c567aae5f93fdfe98bdcae0b52a7ed0e313ffef70c23be433c8712
7
+ data.tar.gz: 37c996a44f6f724490371b12962e08598a6fc85acc454378a7b125284542c9f91b7e4570751b74b33e072faf7e66f2ce1ab55a8e23ce33ea47e90778127a1f3e
data/.rspec CHANGED
@@ -1,3 +1,3 @@
1
- --format documentation
2
1
  --color
3
2
  --require spec_helper
3
+ --order random
data/.rubocop.yml CHANGED
@@ -28,9 +28,6 @@ Security:
28
28
  Style/BlockComments:
29
29
  Enabled: true
30
30
 
31
- Style/BracesAroundHashParameters:
32
- Enabled: true
33
-
34
31
  Style/CaseEquality:
35
32
  Enabled: true
36
33
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.8.0] - 2020-03-29
4
+
5
+ ### Changed
6
+
7
+ - Update `openssl-signature_algorithm` gem dependency from `v0.3` to `v0.4`.
8
+
3
9
  ## [v0.7.0] - 2020-02-25
4
10
 
5
11
  ### Added
@@ -49,6 +55,7 @@ replacement of `JOSE` format `algorithm` string
49
55
  - `TPM::EKCertificate` wrapper
50
56
  - `TPM::SAttest` wrapper
51
57
 
58
+ [v0.8.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.7.0...v0.8.0/
52
59
  [v0.7.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.6.0...v0.7.0/
53
60
  [v0.6.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.5.0...v0.6.0/
54
61
  [v0.5.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.4.0...v0.5.0/
data/Gemfile CHANGED
@@ -7,6 +7,6 @@ gemspec
7
7
 
8
8
  gem "appraisal", "~> 2.2.0"
9
9
  gem "byebug", "~> 11.0"
10
- gem "rake", "~> 12.0"
10
+ gem "rake", "~> 13.0"
11
11
  gem "rspec", "~> 3.0"
12
- gem "rubocop", "~> 0.79.0"
12
+ gem "rubocop", "~> 0.80.1"
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tpm-key_attestation (0.7.0)
4
+ tpm-key_attestation (0.8.0)
5
5
  bindata (~> 2.4)
6
- openssl-signature_algorithm (~> 0.3.0)
6
+ openssl-signature_algorithm (~> 0.4.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -13,39 +13,41 @@ GEM
13
13
  rake
14
14
  thor (>= 0.14.0)
15
15
  ast (2.4.0)
16
- bindata (2.4.5)
17
- byebug (11.1.0)
16
+ bindata (2.4.6)
17
+ byebug (11.1.1)
18
18
  diff-lcs (1.3)
19
19
  jaro_winkler (1.5.4)
20
- openssl-signature_algorithm (0.3.0)
20
+ openssl-signature_algorithm (0.4.0)
21
21
  parallel (1.19.1)
22
- parser (2.7.0.2)
22
+ parser (2.7.0.5)
23
23
  ast (~> 2.4.0)
24
24
  rainbow (3.0.0)
25
- rake (12.3.3)
25
+ rake (13.0.1)
26
+ rexml (3.2.4)
26
27
  rspec (3.9.0)
27
28
  rspec-core (~> 3.9.0)
28
29
  rspec-expectations (~> 3.9.0)
29
30
  rspec-mocks (~> 3.9.0)
30
31
  rspec-core (3.9.1)
31
32
  rspec-support (~> 3.9.1)
32
- rspec-expectations (3.9.0)
33
+ rspec-expectations (3.9.1)
33
34
  diff-lcs (>= 1.2.0, < 2.0)
34
35
  rspec-support (~> 3.9.0)
35
36
  rspec-mocks (3.9.1)
36
37
  diff-lcs (>= 1.2.0, < 2.0)
37
38
  rspec-support (~> 3.9.0)
38
39
  rspec-support (3.9.2)
39
- rubocop (0.79.0)
40
+ rubocop (0.80.1)
40
41
  jaro_winkler (~> 1.5.1)
41
42
  parallel (~> 1.10)
42
43
  parser (>= 2.7.0.1)
43
44
  rainbow (>= 2.2.2, < 4.0)
45
+ rexml
44
46
  ruby-progressbar (~> 1.7)
45
47
  unicode-display_width (>= 1.4.0, < 1.7)
46
48
  ruby-progressbar (1.10.1)
47
49
  thor (1.0.1)
48
- unicode-display_width (1.6.0)
50
+ unicode-display_width (1.6.1)
49
51
 
50
52
  PLATFORMS
51
53
  ruby
@@ -53,9 +55,9 @@ PLATFORMS
53
55
  DEPENDENCIES
54
56
  appraisal (~> 2.2.0)
55
57
  byebug (~> 11.0)
56
- rake (~> 12.0)
58
+ rake (~> 13.0)
57
59
  rspec (~> 3.0)
58
- rubocop (~> 0.79.0)
60
+ rubocop (~> 0.80.1)
59
61
  tpm-key_attestation!
60
62
 
61
63
  BUNDLED WITH
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TPM
4
4
  class KeyAttestation
5
- VERSION = "0.7.0"
5
+ VERSION = "0.8.0"
6
6
  end
7
7
  end
@@ -26,5 +26,5 @@ Gem::Specification.new do |spec|
26
26
  spec.require_paths = ["lib"]
27
27
 
28
28
  spec.add_dependency "bindata", "~> 2.4"
29
- spec.add_dependency "openssl-signature_algorithm", "~> 0.3.0"
29
+ spec.add_dependency "openssl-signature_algorithm", "~> 0.4.0"
30
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tpm-key_attestation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gonzalo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-25 00:00:00.000000000 Z
11
+ date: 2020-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bindata
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.3.0
33
+ version: 0.4.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.3.0
40
+ version: 0.4.0
41
41
  description:
42
42
  email:
43
43
  executables: []