rspec 2.0.1 → 2.1.0
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/Gemfile +4 -3
- data/README.markdown +17 -0
- data/lib/rspec/version.rb +1 -1
- data/rspec.gemspec +1 -1
- metadata +21 -25
data/Gemfile
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
source :rubygems
|
2
2
|
|
3
3
|
gem "rake"
|
4
|
-
|
5
|
-
|
6
|
-
gem
|
4
|
+
|
5
|
+
%w[rspec-core rspec-expectations rspec-mocks].each do |lib|
|
6
|
+
gem lib, :path => File.expand_path("../../#{lib}", __FILE__)
|
7
|
+
end
|
data/README.markdown
CHANGED
@@ -15,6 +15,23 @@ examples (`describe` and `it`) but prefer Test::Unit assertions and mocha, rr
|
|
15
15
|
or flexmock for mocking, you'll be able to do that without having to load the
|
16
16
|
components of rspec that you're not using.
|
17
17
|
|
18
|
+
## Documentation
|
19
|
+
|
20
|
+
### rspec-core
|
21
|
+
|
22
|
+
* [Cucumber features](http://relishapp.com/rspec/rspec-core/v/2-0)
|
23
|
+
* [RDoc](http://rubydoc.info/gems/rspec-core/2.0.1/frames)
|
24
|
+
|
25
|
+
### rspec-expectations
|
26
|
+
|
27
|
+
* [Cucumber features](http://relishapp.com/rspec/rspec-expectations/v/2-0)
|
28
|
+
* [RDoc](http://rubydoc.info/gems/rspec-expectations/2.0.1/frames)
|
29
|
+
|
30
|
+
### rspec-mocks
|
31
|
+
|
32
|
+
* [Cucumber features](http://relishapp.com/rspec/rspec-mocks/v/2-0)
|
33
|
+
* [RDoc](http://rubydoc.info/gems/rspec-mocks/2.0.1/frames)
|
34
|
+
|
18
35
|
## Install
|
19
36
|
|
20
37
|
gem install rspec
|
data/lib/rspec/version.rb
CHANGED
data/rspec.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 13
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 2
|
8
|
-
- 0
|
9
7
|
- 1
|
10
|
-
|
8
|
+
- 0
|
9
|
+
version: 2.1.0
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- David Chelimsky
|
@@ -16,57 +15,54 @@ autorequire:
|
|
16
15
|
bindir: bin
|
17
16
|
cert_chain: []
|
18
17
|
|
19
|
-
date: 2010-
|
18
|
+
date: 2010-11-07 01:00:00 -05:00
|
20
19
|
default_executable:
|
21
20
|
dependencies:
|
22
21
|
- !ruby/object:Gem::Dependency
|
23
|
-
|
22
|
+
name: rspec-core
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
24
|
none: false
|
25
25
|
requirements:
|
26
26
|
- - ~>
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
hash: 13
|
29
28
|
segments:
|
30
29
|
- 2
|
31
|
-
- 0
|
32
30
|
- 1
|
33
|
-
|
34
|
-
|
31
|
+
- 0
|
32
|
+
version: 2.1.0
|
35
33
|
type: :runtime
|
36
|
-
name: rspec-core
|
37
34
|
prerelease: false
|
35
|
+
version_requirements: *id001
|
38
36
|
- !ruby/object:Gem::Dependency
|
39
|
-
|
37
|
+
name: rspec-expectations
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
39
|
none: false
|
41
40
|
requirements:
|
42
41
|
- - ~>
|
43
42
|
- !ruby/object:Gem::Version
|
44
|
-
hash: 13
|
45
43
|
segments:
|
46
44
|
- 2
|
47
|
-
- 0
|
48
45
|
- 1
|
49
|
-
|
50
|
-
|
46
|
+
- 0
|
47
|
+
version: 2.1.0
|
51
48
|
type: :runtime
|
52
|
-
name: rspec-expectations
|
53
49
|
prerelease: false
|
50
|
+
version_requirements: *id002
|
54
51
|
- !ruby/object:Gem::Dependency
|
55
|
-
|
52
|
+
name: rspec-mocks
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
54
|
none: false
|
57
55
|
requirements:
|
58
56
|
- - ~>
|
59
57
|
- !ruby/object:Gem::Version
|
60
|
-
hash: 13
|
61
58
|
segments:
|
62
59
|
- 2
|
63
|
-
- 0
|
64
60
|
- 1
|
65
|
-
|
66
|
-
|
61
|
+
- 0
|
62
|
+
version: 2.1.0
|
67
63
|
type: :runtime
|
68
|
-
name: rspec-mocks
|
69
64
|
prerelease: false
|
65
|
+
version_requirements: *id003
|
70
66
|
description: Meta-gem that depends on the other rspec gems
|
71
67
|
email: dchelimsky@gmail.com;chad.humphries@gmail.com
|
72
68
|
executables: []
|
@@ -99,7 +95,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
95
|
requirements:
|
100
96
|
- - ">="
|
101
97
|
- !ruby/object:Gem::Version
|
102
|
-
hash:
|
98
|
+
hash: -2756088704027878299
|
103
99
|
segments:
|
104
100
|
- 0
|
105
101
|
version: "0"
|
@@ -108,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
104
|
requirements:
|
109
105
|
- - ">="
|
110
106
|
- !ruby/object:Gem::Version
|
111
|
-
hash:
|
107
|
+
hash: -2756088704027878299
|
112
108
|
segments:
|
113
109
|
- 0
|
114
110
|
version: "0"
|
@@ -118,6 +114,6 @@ rubyforge_project: rspec
|
|
118
114
|
rubygems_version: 1.3.7
|
119
115
|
signing_key:
|
120
116
|
specification_version: 3
|
121
|
-
summary: rspec-2.0
|
117
|
+
summary: rspec-2.1.0
|
122
118
|
test_files: []
|
123
119
|
|