rspec-matcher 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/rspec/matcher.rb +6 -0
- data/lib/rspec/matcher/identity.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 949268732dd1527ea7670b3351218482dad1a2d1
|
4
|
+
data.tar.gz: 9e2cecc4308ccbe2b8244283e1a6fbb079f0a7aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 293ba5441ee375f2cedf2744ac5c74b6bff5bb8e1a084c7c1023eacdedae8ef05540a74811d78f3780f53477f1fa1b99e9626db5ae1c12a4b2595ac1daadc46f
|
7
|
+
data.tar.gz: b4288aedb72ed2487626fa9adb15f7764104f0e9a8c4f787d9502310a096a6c7a2af23f7e940554c625fb0cd14df9d1015fc719ce1d19d41a7856fc8e55b450d
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# RSpec::Matcher
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/rspec-matcher.svg)](http://badge.fury.io/rb/rspec-matcher)
|
4
4
|
[![Code Climate GPA](https://codeclimate.com/github/pekhee/rspec-matcher.svg)](https://codeclimate.com/github/pekhee/rspec-matcher)
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
For a secure install, type the following (recommended):
|
42
42
|
|
43
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/pekhee/rspec-matcher/master/
|
43
|
+
gem cert --add <(curl -Ls https://raw.githubusercontent.com/pekhee/rspec-matcher/master/pekhee.pem)
|
44
44
|
gem install rspec-matcher --trust-policy MediumSecurity
|
45
45
|
|
46
46
|
NOTE: A HighSecurity trust policy would be best but MediumSecurity enables signed gem verification while
|
data/lib/rspec/matcher.rb
CHANGED