matchi-fix 1.0.2 → 1.0.3

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: 19eb9daa6e57aa2ca06b0b5654c8e4d049f5496d3536f6cb92dad5db1222dedc
4
- data.tar.gz: cf0dc6569f025cfa780a84c42d2df291dbbd669d567d30f7546c9fd486f1d9ad
3
+ metadata.gz: 14f679139a97bbb7093f96a3fd7cc7b7c0c47a3bc57be79378f3e52cbf6d24bd
4
+ data.tar.gz: 7413cbb417ce71cc6dde6e5329f09c92653f3c4118c9931f555d71d26b538222
5
5
  SHA512:
6
- metadata.gz: 357072807783a304644c5b91dcf7b6a995b4be6ce868acf5307461f21bf6a22413454651eba8985496e38bb3e34f198b77d7117c236fedfa8048a38eb250d5d3
7
- data.tar.gz: 6a315fc24d133fff70ad9d3d5d3fc7b65be20f61741aa6a5ead1afd305b44ed5f52e54e033b627c4b00955551555f79b18abf9dd5d9c48457c14aafc02402f30
6
+ metadata.gz: 3fe1fd4adde7eeec6823105413484c0e51e2151d0d0fba330394b8d78563069181a08902993c726bbfbb64e2e55da2c6ea65faa4035c016d9d578275b58abacb
7
+ data.tar.gz: 5928943339c93b491fabb6e552d537f00e6c9935d0448881c7cb4c5b1a5d28d4ce2a0184d78569fb0df2cf3c234e20a6aef7c89a3a299578e9648ff9c1c00a4d
data/.travis.yml CHANGED
@@ -7,12 +7,10 @@ script:
7
7
  - bundle exec rubocop
8
8
  - bundle exec rake test
9
9
  rvm:
10
- - 2.0
11
- - 2.1
12
- - 2.2
13
10
  - 2.3.3
14
11
  - 2.4.0
15
12
  - 2.5.0
13
+ - 2.6.2
16
14
  - ruby-head
17
15
  - jruby-head
18
16
  - rbx-3
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Cyril Kato
3
+ Copyright (c) 2015-2019 Cyril Kato
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -22,14 +22,19 @@
22
22
 
23
23
  ## Installation
24
24
 
25
- __Matchi::Fix__ is cryptographically signed.
25
+ Add this line to your application's Gemfile:
26
26
 
27
- To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
27
+ ```ruby
28
+ gem 'matchi-fix'
29
+ ```
30
+
31
+ And then execute:
32
+
33
+ $ bundle
28
34
 
29
- $ gem cert --add <(curl -Ls https://raw.github.com/fixrb/matchi-fix/master/certs/gem-fixrb-public_cert.pem)
30
- $ gem install matchi-fix -P HighSecurity
35
+ Or install it yourself as:
31
36
 
32
- The `HighSecurity` trust profile will verify all gems. All of __Matchi::Fix__'s dependencies are signed.
37
+ $ gem install matchi-fix
33
38
 
34
39
  ## Usage
35
40
 
@@ -80,4 +85,4 @@ See `LICENSE.md` file.
80
85
 
81
86
  This project is sponsored by:
82
87
 
83
- [![Sashite](http://sashite.com/img/sashite.png)](http://sashite.com/)
88
+ [![Sashite](https://sashite.com/img/sashite.png)](https://sashite.com/)
data/VERSION.semver CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -0,0 +1 @@
1
+ 5333d3f758b5d31dbe0f3f30c8e027dbd2edb263e097d2ac7f20e852ee00c9bcb260db4cf19c5756527e9b725eabfadbad6da93bbe5a4ca4ad43013198a6fe7d
data/matchi-fix.gemspec CHANGED
@@ -16,16 +16,12 @@ Gem::Specification.new do |spec|
16
16
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
17
  spec.require_paths = ['lib']
18
18
 
19
- spec.add_dependency 'fix', '~> 0.17.1'
20
- spec.add_dependency 'matchi', '~> 1.0.2'
19
+ spec.add_dependency 'fix', '~> 0.17.2'
20
+ spec.add_dependency 'matchi', '~> 1.0.4'
21
21
 
22
- spec.add_development_dependency 'bundler', '~> 1.16'
22
+ spec.add_development_dependency 'bundler', '~> 2.0'
23
23
  spec.add_development_dependency 'rake', '~> 12.3'
24
- spec.add_development_dependency 'rubocop', '~> 0.58'
24
+ spec.add_development_dependency 'rubocop', '~> 0.67'
25
25
  spec.add_development_dependency 'simplecov', '~> 0.16'
26
26
  spec.add_development_dependency 'yard', '~> 0.9'
27
-
28
- spec.cert_chain = ['certs/gem-fixrb-public_cert.pem']
29
- private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
30
- spec.signing_key = private_key if File.exist?(private_key)
31
27
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matchi-fix
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cyril Kato
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - certs/gem-fixrb-public_cert.pem
12
- date: 2018-08-26 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2019-04-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: fix
@@ -17,42 +16,42 @@ dependencies:
17
16
  requirements:
18
17
  - - "~>"
19
18
  - !ruby/object:Gem::Version
20
- version: 0.17.1
19
+ version: 0.17.2
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - "~>"
26
25
  - !ruby/object:Gem::Version
27
- version: 0.17.1
26
+ version: 0.17.2
28
27
  - !ruby/object:Gem::Dependency
29
28
  name: matchi
30
29
  requirement: !ruby/object:Gem::Requirement
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: 1.0.2
33
+ version: 1.0.4
35
34
  type: :runtime
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - "~>"
40
39
  - !ruby/object:Gem::Version
41
- version: 1.0.2
40
+ version: 1.0.4
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: bundler
44
43
  requirement: !ruby/object:Gem::Requirement
45
44
  requirements:
46
45
  - - "~>"
47
46
  - !ruby/object:Gem::Version
48
- version: '1.16'
47
+ version: '2.0'
49
48
  type: :development
50
49
  prerelease: false
51
50
  version_requirements: !ruby/object:Gem::Requirement
52
51
  requirements:
53
52
  - - "~>"
54
53
  - !ruby/object:Gem::Version
55
- version: '1.16'
54
+ version: '2.0'
56
55
  - !ruby/object:Gem::Dependency
57
56
  name: rake
58
57
  requirement: !ruby/object:Gem::Requirement
@@ -73,14 +72,14 @@ dependencies:
73
72
  requirements:
74
73
  - - "~>"
75
74
  - !ruby/object:Gem::Version
76
- version: '0.58'
75
+ version: '0.67'
77
76
  type: :development
78
77
  prerelease: false
79
78
  version_requirements: !ruby/object:Gem::Requirement
80
79
  requirements:
81
80
  - - "~>"
82
81
  - !ruby/object:Gem::Version
83
- version: '0.58'
82
+ version: '0.67'
84
83
  - !ruby/object:Gem::Dependency
85
84
  name: simplecov
86
85
  requirement: !ruby/object:Gem::Requirement
@@ -127,7 +126,6 @@ files:
127
126
  - VERSION.semver
128
127
  - bin/console
129
128
  - bin/setup
130
- - certs/gem-fixrb-public_cert.pem
131
129
  - checksum/matchi-fix-0.1.0.gem.sha512
132
130
  - checksum/matchi-fix-0.1.1.gem.sha512
133
131
  - checksum/matchi-fix-0.1.2.gem.sha512
@@ -135,6 +133,7 @@ files:
135
133
  - checksum/matchi-fix-0.1.4.gem.sha512
136
134
  - checksum/matchi-fix-0.2.0.gem.sha512
137
135
  - checksum/matchi-fix-1.0.1.gem.sha512
136
+ - checksum/matchi-fix-1.0.2.gem.sha512
138
137
  - lib/matchi/fix.rb
139
138
  - matchi-fix.gemspec
140
139
  - pkg_checksum
@@ -1,21 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
3
- YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
4
- bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
5
- bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
6
- YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
7
- NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
8
- O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
9
- 4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
10
- nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
11
- weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
12
- 7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
13
- LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
14
- bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
15
- BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
16
- caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
17
- P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
18
- JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
19
- dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
20
- 0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
21
- -----END CERTIFICATE-----