fix-expect 0.3.3 → 0.3.4

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: 352c67098df60ca72e6543b50210e18458bfab6ed9dbf129199aaf589016e0d6
4
- data.tar.gz: 2825150f29db7cfff5dde6855aa259dbddb0baf5ee5727284baa035a5a9d479d
3
+ metadata.gz: cd6350da2209fda42dd6e3d7363fcef1b6a8c7baa12b8f7b44623b80637c6ff5
4
+ data.tar.gz: a2d8d18e542f4b0837ff35f49b071737772f65ddeb8fbe452e54fb30481ce4d2
5
5
  SHA512:
6
- metadata.gz: ceb3e16f8483939a130e7ae0e1d80095e7d1dde67b1f48a269a56eab41600456185e3cc5a7b8601af04a895f56b0f6e2aa7e3bfc793d35078dd210d214cc6252
7
- data.tar.gz: 653214cfac32b47673bec4e5a2f5e29be32f0c9b72a95cb66de6a641c7aba981d1fcbd8a23614e8c115d13443d809a4b4b27ce316df49a86ea6c40ba3fbcd1d2
6
+ metadata.gz: 035526f7bd325ebc1044061a0c942721d6a085e1b602577f8c26b46aa50df8653341138455f03322a1559df55344c3b937573b8a3c98ff3be58fc6466bc46dde
7
+ data.tar.gz: 8c99295ef30ceac2662356c149a9a480be85777f6315d04893739dedf97a8435b1a58e5cc914e314e560579acc6c4cd41f720716b6edd6b26821e7d170b7b7dc
@@ -7,10 +7,10 @@ script:
7
7
  - bundle exec rubocop
8
8
  - bundle exec rake test
9
9
  rvm:
10
- - 2.2
11
10
  - 2.3.3
12
11
  - 2.4.0
13
12
  - 2.5.0
13
+ - 2.6.2
14
14
  - ruby-head
15
15
  - jruby-head
16
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,16 +22,7 @@
22
22
 
23
23
  ## Installation
24
24
 
25
- __Fix::Expect__ is cryptographically signed.
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:
28
-
29
- $ gem cert --add <(curl -Ls https://raw.github.com/fixrb/fix-expect/master/certs/gem-fixrb-public_cert.pem)
30
- $ gem install fix-expect -P HighSecurity
31
-
32
- The `HighSecurity` trust profile will verify all gems. All of __Fix::Expect__'s dependencies are signed.
33
-
34
- Or add this line to your application's Gemfile:
25
+ Add this line to your application's Gemfile:
35
26
 
36
27
  ```ruby
37
28
  gem 'fix-expect'
@@ -41,6 +32,10 @@ And then execute:
41
32
 
42
33
  $ bundle
43
34
 
35
+ Or install it yourself as:
36
+
37
+ $ gem install fix-expect
38
+
44
39
  ## Usage
45
40
 
46
41
  __Fix::Expect__ lets you express expected outcomes on an object:
@@ -140,4 +135,4 @@ See `LICENSE.md` file.
140
135
 
141
136
  This project is sponsored by:
142
137
 
143
- [![Sashite](http://sashite.com/img/sashite.png)](http://sashite.com/)
138
+ [![Sashite](https://sashite.com/img/sashite.png)](https://sashite.com/)
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.4
@@ -0,0 +1 @@
1
+ a67f8870c7d95880b83b7758b0ffb1f1e30d23beae78cb8200539bf7be06ffa9dd41df74fdd871f85874a138c55bb58a723970df3d5db481892dd203b6930e28
@@ -18,14 +18,10 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  spec.add_dependency 'fix', '~> 0.17.1'
20
20
 
21
- spec.add_development_dependency 'bundler', '~> 1.16'
21
+ spec.add_development_dependency 'bundler', '~> 2.0'
22
22
  spec.add_development_dependency 'rake', '~> 12.3'
23
- spec.add_development_dependency 'rubocop', '~> 0.58'
23
+ spec.add_development_dependency 'rubocop', '~> 0.67'
24
24
  spec.add_development_dependency 'simplecov', '~> 0.16'
25
25
  spec.add_development_dependency 'spectus', '~> 3.0'
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: fix-expect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
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
@@ -31,14 +30,14 @@ dependencies:
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: '1.16'
33
+ version: '2.0'
35
34
  type: :development
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.16'
40
+ version: '2.0'
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: rake
44
43
  requirement: !ruby/object:Gem::Requirement
@@ -59,14 +58,14 @@ dependencies:
59
58
  requirements:
60
59
  - - "~>"
61
60
  - !ruby/object:Gem::Version
62
- version: '0.58'
61
+ version: '0.67'
63
62
  type: :development
64
63
  prerelease: false
65
64
  version_requirements: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - "~>"
68
67
  - !ruby/object:Gem::Version
69
- version: '0.58'
68
+ version: '0.67'
70
69
  - !ruby/object:Gem::Dependency
71
70
  name: simplecov
72
71
  requirement: !ruby/object:Gem::Requirement
@@ -129,9 +128,9 @@ files:
129
128
  - VERSION.semver
130
129
  - bin/console
131
130
  - bin/setup
132
- - certs/gem-fixrb-public_cert.pem
133
131
  - checksum/fix-expect-0.3.0.gem.sha512
134
132
  - checksum/fix-expect-0.3.2.gem.sha512
133
+ - checksum/fix-expect-0.3.3.gem.sha512
135
134
  - fix-expect.gemspec
136
135
  - lib/fix/expect.rb
137
136
  - lib/fix/it.rb
@@ -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-----