rr 1.0.5.rc2 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +14 -6
- data/CHANGES.md +16 -0
- data/VERSION +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZDk5MTU5MzdkN2I5OWEwY2FkNmQ3MzI4MzRmMTlmYzQwYzhkMTUwOA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ODM5Nzc5YzE5OGJmMzZhOWQ5M2YzMzdjM2IzMjAxYzQyOWM1NzQ4Yg==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NDk1OGY1YTg5NmFlNTFlYjkyNTQ2ZTE0Njk0NzFmNzllN2I1MDQ2ZDQzZjM4
|
10
|
+
NjM2MWUxNTZmZmUzNjljM2EwMmU5YjZlMDg4NWFlNWViMzY4MmNhYTg1N2Uw
|
11
|
+
ODhlZjY5ZTg2M2JhZmJiMmI4YmNhMGRiZDhlZGQxMzM4YjUzYWU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZWYxYTIxNjVkNDMzNmJjM2I1ODMxMTk1MjA1MDcyZDIzZTFjY2YxYzk0NmFi
|
14
|
+
ODdkZmJlMzgzZWFjMzZiODk3MzhmOTc5MzEwZTI0YmVlMzJmZmFkOGJhOTVh
|
15
|
+
MTU5YWY1MWUxOWMwMDk0YTg3NmJkZDJhYzk5OTQwYzQ3NTA5ZDY=
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.0.5 (2013-03-28)
|
4
|
+
|
5
|
+
* Compatibility with RSpec-2. There are now two adapters for RSpec, one that
|
6
|
+
works with RSpec-1 and a new one that works with RSpec-2. Currently, saying
|
7
|
+
`RSpec.configure {|c| c.mock_with(:rr) }` still uses RSpec-1; to use the new
|
8
|
+
one, you say `RSpec.configure {|c| c.mock_framework = RR::Adapters::RSpec2 }`.
|
9
|
+
(#66, #68, #80) [njay, james2m]
|
10
|
+
* Fix MethodMissingInjection so that `[stub].flatten` works without throwing a
|
11
|
+
NoMethodError (undefined method #to_ary) error under Ruby 1.9 (#44)
|
12
|
+
* Raise a MiniTest::Assertion error in the MiniTest adapter so that mock
|
13
|
+
failures appear in the output as failures rather than uncaught exceptions
|
14
|
+
(#69) [jayferd]
|
15
|
+
* Completely remove leftover #new_instance_of method, and also remove
|
16
|
+
mention of #new_instance_of from the README
|
17
|
+
* Fix tests so they all work and pass again
|
18
|
+
|
3
19
|
## 1.0.4 (2011-06-11)
|
4
20
|
|
5
21
|
* Fixed bug using workaround with leftover MethodMissingInjections
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.5
|
1
|
+
1.0.5
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.5
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Takita
|
@@ -25,7 +25,6 @@ files:
|
|
25
25
|
- VERSION
|
26
26
|
- Gemfile
|
27
27
|
- Rakefile
|
28
|
-
- lib/rr.rb
|
29
28
|
- lib/rr/adapters/minitest.rb
|
30
29
|
- lib/rr/adapters/rr_methods.rb
|
31
30
|
- lib/rr/adapters/rspec.rb
|
@@ -92,7 +91,6 @@ files:
|
|
92
91
|
- lib/rr/times_called_matchers/terminal.rb
|
93
92
|
- lib/rr/times_called_matchers/times_called_matcher.rb
|
94
93
|
- lib/rr/version.rb
|
95
|
-
- lib/rr/wildcard_matchers.rb
|
96
94
|
- lib/rr/wildcard_matchers/anything.rb
|
97
95
|
- lib/rr/wildcard_matchers/boolean.rb
|
98
96
|
- lib/rr/wildcard_matchers/duck_type.rb
|
@@ -102,6 +100,8 @@ files:
|
|
102
100
|
- lib/rr/wildcard_matchers/range.rb
|
103
101
|
- lib/rr/wildcard_matchers/regexp.rb
|
104
102
|
- lib/rr/wildcard_matchers/satisfy.rb
|
103
|
+
- lib/rr/wildcard_matchers.rb
|
104
|
+
- lib/rr.rb
|
105
105
|
- spec/runner.rb
|
106
106
|
homepage: http://rr.github.com/rr
|
107
107
|
licenses:
|
@@ -113,20 +113,21 @@ require_paths:
|
|
113
113
|
- lib
|
114
114
|
required_ruby_version: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
|
-
- - '>='
|
116
|
+
- - ! '>='
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '0'
|
119
119
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
120
|
requirements:
|
121
|
-
- - '
|
121
|
+
- - ! '>='
|
122
122
|
- !ruby/object:Gem::Version
|
123
|
-
version:
|
123
|
+
version: '0'
|
124
124
|
requirements: []
|
125
125
|
rubyforge_project:
|
126
|
-
rubygems_version: 2.0.
|
126
|
+
rubygems_version: 2.0.3
|
127
127
|
signing_key:
|
128
128
|
specification_version: 4
|
129
129
|
summary: RR is a double framework that features a rich selection of double techniques
|
130
130
|
and a terse syntax.
|
131
131
|
test_files:
|
132
132
|
- spec/runner.rb
|
133
|
+
has_rdoc:
|