rspec-spy 1.1.0 → 1.1.1
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.
- data/CHANGELOG.md +4 -0
- data/README.md +2 -1
- data/lib/rspec-spy.rb +2 -0
- data/lib/rspec/spy/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -25,7 +25,7 @@ end
|
|
25
25
|
|
26
26
|
## Installation
|
27
27
|
|
28
|
-
Add this line to your application's Gemfile
|
28
|
+
Add this line to your application's Gemfile in the `:test` group
|
29
29
|
|
30
30
|
gem 'rspec-spy'
|
31
31
|
|
@@ -42,6 +42,7 @@ Add to your spec_helper.rb in `RSpec.configure` **AFTER any other global before
|
|
42
42
|
``` ruby
|
43
43
|
# any config.before hooks should go above
|
44
44
|
|
45
|
+
require 'rspec-spy'
|
45
46
|
config.before(:each, :spy => true) do |example|
|
46
47
|
RSpec::Spy(example)
|
47
48
|
end
|
data/lib/rspec-spy.rb
CHANGED
data/lib/rspec/spy/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-spy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -104,7 +104,7 @@ rubyforge_project:
|
|
104
104
|
rubygems_version: 1.8.21
|
105
105
|
signing_key:
|
106
106
|
specification_version: 3
|
107
|
-
summary: rspec-spy-1.1.
|
107
|
+
summary: rspec-spy-1.1.1
|
108
108
|
test_files:
|
109
109
|
- spec/rspec-spy_spec.rb
|
110
110
|
- spec/spec_helper.rb
|