rspec-yenta 0.0.1 → 0.0.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 +4 -4
- data/README.md +14 -1
- data/lib/{rspec/rspec-yenta.rb → rspec-yenta.rb} +0 -0
- data/lib/rspec/yenta.rb +1 -1
- data/lib/rspec/yenta/version.rb +1 -1
- data/lib/{rspec/rspec_yenta.rb → rspec_yenta.rb} +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1b43c6cb7f6c50c2693d54b75821bad6d38315e
|
|
4
|
+
data.tar.gz: 289eeea7f08eafffd93500ccf28b29040c330189
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b09ad75035d8b114b8c454796268edd6b74eb2a2cf5d5a42f3b18e92805ffa3abfe8ae677cd6d426dcfcd806f7c044feb47f864a8f0dd88bd7c21a3f9625679
|
|
7
|
+
data.tar.gz: 4e3e2a886bfa57815a72721f7f02228937f90962356ffdced1ecd74910c48c6a9a064962ddd6fa30228a295ba368b177e484e07e00fe5ef9e1fb2dc56c41a6b5
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RSpec::Yenta
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Yenta, find me all of my RSpec matchers.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -41,3 +41,16 @@ end
|
|
|
41
41
|
`RSpec::Yenta.load_tasks` takes an arbitrary block. And the above block is
|
|
42
42
|
requiring the Rails application. This may also be required if you have custom
|
|
43
43
|
matchers that you want to expose. Or if you are working with a Rails Engine.
|
|
44
|
+
|
|
45
|
+
## Sample Output
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
be ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers.rb:221
|
|
49
|
+
be_a ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers.rb:227
|
|
50
|
+
be_a_kind_of ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers.rb:253
|
|
51
|
+
be_a_new ./path/to/rspec-rails-2.14.0/lib/rspec/rails/matchers/be_a_new.rb:73
|
|
52
|
+
be_an ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers.rb:227
|
|
53
|
+
be_an_instance_of ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers.rb:240
|
|
54
|
+
be_close ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers/be_close.rb:4
|
|
55
|
+
be_equivalent_to ./path/to/rspec-expectations-2.14.4/lib/rspec/matchers/dsl.rb:8
|
|
56
|
+
```
|
|
File without changes
|
data/lib/rspec/yenta.rb
CHANGED
data/lib/rspec/yenta/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-yenta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Friesen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-03-
|
|
11
|
+
date: 2014-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -64,10 +64,10 @@ files:
|
|
|
64
64
|
- LICENSE
|
|
65
65
|
- README.md
|
|
66
66
|
- Rakefile
|
|
67
|
-
- lib/rspec
|
|
68
|
-
- lib/rspec/rspec_yenta.rb
|
|
67
|
+
- lib/rspec-yenta.rb
|
|
69
68
|
- lib/rspec/yenta.rb
|
|
70
69
|
- lib/rspec/yenta/version.rb
|
|
70
|
+
- lib/rspec_yenta.rb
|
|
71
71
|
- rspec-yenta.gemspec
|
|
72
72
|
homepage: https://github.com/jeremyf/yenta
|
|
73
73
|
licenses:
|