rspec 2.12.0 → 3.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/LICENSE.md +27 -0
- data/README.md +27 -27
- data/lib/rspec/version.rb +1 -1
- data/lib/rspec.rb +1 -2
- data.tar.gz.sig +0 -0
- metadata +68 -43
- metadata.gz.sig +0 -0
- data/License.txt +0 -24
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5e538addc1a812c6106ae3794da968175a326e58f045a6ea8a70acf50b6d9e57
|
4
|
+
data.tar.gz: c77589c43e3609f45ea0d3bf3fb0b3de6b82538442c0d76dd0cf80ff458a5771
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2f4f4338dc423c43255f26c941ab6496f9c3e276a93d025071e9b290b8ff8c87ca92a9424d7d55c7b10de7e1df7edcc997be6b04b017a4431a157dfcf380cfc3
|
7
|
+
data.tar.gz: 39ab563abed6ba71aa8b57eb0d47def6420fbcb64593a42ded1592016f98fe50380b499b1f167a86617b10547f8fc400f24f675a577c1539e4fa78b884b9d79a
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data/LICENSE.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
=====================
|
3
|
+
|
4
|
+
Copyright © 2009 Chad Humphries, David Chelimsky
|
5
|
+
Copyright © 2006 David Chelimsky, The RSpec Development Team
|
6
|
+
Copyright © 2005 Steven Baker
|
7
|
+
|
8
|
+
Permission is hereby granted, free of charge, to any person
|
9
|
+
obtaining a copy of this software and associated documentation
|
10
|
+
files (the “Software”), to deal in the Software without
|
11
|
+
restriction, including without limitation the rights to use,
|
12
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
13
|
+
copies of the Software, and to permit persons to whom the
|
14
|
+
Software is furnished to do so, subject to the following
|
15
|
+
conditions:
|
16
|
+
|
17
|
+
The above copyright notice and this permission notice shall be
|
18
|
+
included in all copies or substantial portions of the Software.
|
19
|
+
|
20
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
21
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
22
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
23
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
24
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
25
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
26
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
27
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,47 +1,47 @@
|
|
1
|
-
# RSpec
|
1
|
+
# RSpec
|
2
2
|
|
3
3
|
Behaviour Driven Development for Ruby
|
4
4
|
|
5
|
-
|
5
|
+
**The rspec metagem repository has been renamed to rspec-metagem, please update
|
6
|
+
any rspec/rspec Github references to rspec/rspec-metagem, this is in preparation
|
7
|
+
for a new mono-repo approach to RSpec dev to unify issue tracking and PR management**
|
6
8
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
rspec-
|
11
|
-
|
9
|
+
## Description
|
10
|
+
|
11
|
+
rspec is a meta-gem, which depends on the
|
12
|
+
[rspec-core](https://github.com/rspec/rspec-core),
|
13
|
+
[rspec-expectations](https://github.com/rspec/rspec-expectations)
|
14
|
+
and [rspec-mocks](https://github.com/rspec/rspec-mocks) gems. Each of these
|
15
|
+
can be installed separately and loaded in isolation using `require`. Among
|
16
|
+
other benefits, this allows you to use rspec-expectations, for example, in
|
17
|
+
Test::Unit::TestCase if you happen to prefer that style.
|
12
18
|
|
13
19
|
Conversely, if you like RSpec's approach to declaring example groups and
|
14
|
-
examples (`describe` and `it`) but prefer Test::Unit assertions and
|
15
|
-
|
16
|
-
|
20
|
+
examples (`describe` and `it`) but prefer Test::Unit assertions and
|
21
|
+
[mocha](https://github.com/freerange/mocha), [rr](https://github.com/rr/rr)
|
22
|
+
or [flexmock](https://github.com/jimweirich/flexmock) for mocking, you'll be
|
23
|
+
able to do that without having to install or load the components of RSpec that
|
24
|
+
you're not using.
|
17
25
|
|
18
26
|
## Documentation
|
19
27
|
|
20
|
-
|
21
|
-
|
22
|
-
* [Cucumber features](http://relishapp.com/rspec/rspec-core)
|
23
|
-
* [RDoc](http://rubydoc.info/gems/rspec-core/frames)
|
24
|
-
|
25
|
-
### rspec-expectations
|
26
|
-
|
27
|
-
* [Cucumber features](http://relishapp.com/rspec/rspec-expectations)
|
28
|
-
* [RDoc](http://rubydoc.info/gems/rspec-expectations/frames)
|
29
|
-
|
30
|
-
### rspec-mocks
|
31
|
-
|
32
|
-
* [Cucumber features](http://relishapp.com/rspec/rspec-mocks)
|
33
|
-
* [RDoc](http://rubydoc.info/gems/rspec-mocks/frames)
|
28
|
+
See http://rspec.info/documentation/ for links to documentation for all gems.
|
34
29
|
|
35
30
|
## Install
|
36
31
|
|
37
32
|
gem install rspec
|
38
33
|
|
34
|
+
## Setup
|
35
|
+
|
36
|
+
rspec --init
|
37
|
+
|
39
38
|
## Contribute
|
40
39
|
|
41
40
|
* [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
|
42
41
|
|
43
42
|
## Also see
|
44
43
|
|
45
|
-
* [
|
46
|
-
* [
|
47
|
-
* [
|
44
|
+
* [https://github.com/rspec/rspec-core](https://github.com/rspec/rspec-core)
|
45
|
+
* [https://github.com/rspec/rspec-expectations](https://github.com/rspec/rspec-expectations)
|
46
|
+
* [https://github.com/rspec/rspec-mocks](https://github.com/rspec/rspec-mocks)
|
47
|
+
* [https://github.com/rspec/rspec-rails](https://github.com/rspec/rspec-rails)
|
data/lib/rspec/version.rb
CHANGED
data/lib/rspec.rb
CHANGED
data.tar.gz.sig
ADDED
Binary file
|
metadata
CHANGED
@@ -1,106 +1,131 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 3.13.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Steven Baker
|
9
8
|
- David Chelimsky
|
10
|
-
|
9
|
+
- Myron Marston
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
|
-
cert_chain:
|
13
|
-
|
12
|
+
cert_chain:
|
13
|
+
- |
|
14
|
+
-----BEGIN CERTIFICATE-----
|
15
|
+
MIIF1TCCA72gAwIBAgIJAPXjfUbCjdXUMA0GCSqGSIb3DQEBBQUAMIGAMQswCQYD
|
16
|
+
VQQGEwJVUzETMBEGA1UECAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEO
|
17
|
+
MAwGA1UECgwFUlNwZWMxEzARBgNVBAMMCnJzcGVjLmluZm8xJTAjBgkqhkiG9w0B
|
18
|
+
CQEWFnJzcGVjQGdvb2dsZWdyb3Vwcy5jb20wHhcNMTQxMjIzMDkzNTIyWhcNMjQx
|
19
|
+
MjIyMDkzNTIyWjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24x
|
20
|
+
EDAOBgNVBAcMB1NlYXR0bGUxDjAMBgNVBAoMBVJTcGVjMRMwEQYDVQQDDApyc3Bl
|
21
|
+
Yy5pbmZvMSUwIwYJKoZIhvcNAQkBFhZyc3BlY0Bnb29nbGVncm91cHMuY29tMIIC
|
22
|
+
IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSmjgcHaKlD0jizRJowi2bGI
|
23
|
+
KMOHnJoExxRNHHxH+3w9kkl95YldvDRVX495b13ZCzwRe0AyqX24wq04tp0G5Z5C
|
24
|
+
e/w2pnNK4ol1eECPwQu+YGpepeODlZICL5gwQspe0cDifbBnHx5QySMiPpvx6bC0
|
25
|
+
tQTox0ppDIaMhch8IPCwyoE4DQK5bpsdwnLSHTsQjUIb7IM8tUMpd/iKrJgNffwc
|
26
|
+
6gC1TmhIlzQoB26nCNh9uK7xZjUM+sGECzvcYuImchUaIgJA/ybrlZS+m/hxzvBo
|
27
|
+
mLnn/xNEC6Vz5HG+3TR0Gb0cSUf6XUu2s51Jk/SJi3MhCZp2gs9OUg4EVZNzQVkZ
|
28
|
+
efLBjAZG2Mxk14JyB4/Omc+Jk0ajprINCBbUNnxzCJrYDM3J9TVWIwyUGNX/U3MO
|
29
|
+
s3tMAT+EVgx/mZMPnBO8EULlyF51MRUp3Wy9Mnw8AYLk30UnMG5AjqgO5JNyFlA7
|
30
|
+
Xeh3EVdWY3vMB1pkhPwlsenpcmj5gOzrd54lELOVbCGHCf48iSqeflY2Lhe0pvzK
|
31
|
+
blXCJBDmtrebvus291rM/dHcbEfK1SVd5Wut/n131iouf6dnNCFskFygDcgBbthC
|
32
|
+
gpEMqf80lEmhX59VUsm0Pv6OEo+ZPHBvXPiJA6DShQh9t3YtpwyA8uVDMbT/i32u
|
33
|
+
2FUsqZbbJcCmkBrGposCAwEAAaNQME4wHQYDVR0OBBYEFPPvQ5XT0Nvuhi6k+hrW
|
34
|
+
Vv35J+TeMB8GA1UdIwQYMBaAFPPvQ5XT0Nvuhi6k+hrWVv35J+TeMAwGA1UdEwQF
|
35
|
+
MAMBAf8wDQYJKoZIhvcNAQEFBQADggIBAIqbQSWH2aAF537DKwAMB8nMFsoe24MD
|
36
|
+
gtuQAyjTtbH+QBE4N2RdQF/sU7Y3PYR7nqdrCsYc3RxyqM5XXi7I3IYdpfe1RuxY
|
37
|
+
+pyPzVQsPPDhMlJlCrwJsADnxlpxZlAgxYSLKOan55ihscaAWA90wqRUrf/ZJM36
|
38
|
+
8LWCPVn5teIt5aaxZWX68RMxa+AXvpbtJOBwXLkIFk3apD8CX4DhelIdw67DbkUe
|
39
|
+
ghUd/u62qrnqBTVgditt7OoWIZjzh24/Fda5d0MxZyvLILGOrf5bN4cTbe/q9Cid
|
40
|
+
Xrik7Upm+mu3y3yQIfrw85xybHq6iNXyYHvCdSrFfCIKrGpd/0CAdmYnJlx59Fk/
|
41
|
+
UbD3Eyx4psBSkU+WKO0Uf+3zNI7N/nVeNIwU/Ft+l8l7/K+427656c+ZGWDO0Gt/
|
42
|
+
BeEOSTDKP7qQ1T+JvMrBcBQo+i0cnRT10J1aoV90BhxsvWTRizIbugbaqR6Tq3bj
|
43
|
+
Akt00cIlNSplL6DenIAKSh5kF7s0tRD0tC3bNkZmNjNGkdoGEcUODEpTB3RHKKiu
|
44
|
+
e6k2Jg6m00z5vGFQhOnROG/QaUzMA3A3mFBe1RHFo07xd0pFeoeWL3vF69Gx9Jwp
|
45
|
+
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
46
|
+
F3MdtaDehhjC
|
47
|
+
-----END CERTIFICATE-----
|
48
|
+
date: 2024-02-04 00:00:00.000000000 Z
|
14
49
|
dependencies:
|
15
50
|
- !ruby/object:Gem::Dependency
|
16
51
|
name: rspec-core
|
17
52
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
53
|
requirements:
|
20
|
-
- - ~>
|
54
|
+
- - "~>"
|
21
55
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
56
|
+
version: 3.13.0
|
23
57
|
type: :runtime
|
24
58
|
prerelease: false
|
25
59
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
60
|
requirements:
|
28
|
-
- - ~>
|
61
|
+
- - "~>"
|
29
62
|
- !ruby/object:Gem::Version
|
30
|
-
version:
|
63
|
+
version: 3.13.0
|
31
64
|
- !ruby/object:Gem::Dependency
|
32
65
|
name: rspec-expectations
|
33
66
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
67
|
requirements:
|
36
|
-
- - ~>
|
68
|
+
- - "~>"
|
37
69
|
- !ruby/object:Gem::Version
|
38
|
-
version:
|
70
|
+
version: 3.13.0
|
39
71
|
type: :runtime
|
40
72
|
prerelease: false
|
41
73
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
74
|
requirements:
|
44
|
-
- - ~>
|
75
|
+
- - "~>"
|
45
76
|
- !ruby/object:Gem::Version
|
46
|
-
version:
|
77
|
+
version: 3.13.0
|
47
78
|
- !ruby/object:Gem::Dependency
|
48
79
|
name: rspec-mocks
|
49
80
|
requirement: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
81
|
requirements:
|
52
|
-
- - ~>
|
82
|
+
- - "~>"
|
53
83
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
84
|
+
version: 3.13.0
|
55
85
|
type: :runtime
|
56
86
|
prerelease: false
|
57
87
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
88
|
requirements:
|
60
|
-
- - ~>
|
89
|
+
- - "~>"
|
61
90
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
91
|
+
version: 3.13.0
|
63
92
|
description: BDD for Ruby
|
64
|
-
email: rspec
|
93
|
+
email: rspec@googlegroups.com
|
65
94
|
executables: []
|
66
95
|
extensions: []
|
67
96
|
extra_rdoc_files:
|
68
97
|
- README.md
|
69
98
|
files:
|
99
|
+
- LICENSE.md
|
100
|
+
- README.md
|
70
101
|
- lib/rspec.rb
|
71
102
|
- lib/rspec/version.rb
|
72
|
-
- License.txt
|
73
|
-
- README.md
|
74
103
|
homepage: http://github.com/rspec
|
75
104
|
licenses:
|
76
105
|
- MIT
|
77
|
-
|
106
|
+
metadata:
|
107
|
+
bug_tracker_uri: https://github.com/rspec/rspec-metagem/issues
|
108
|
+
documentation_uri: https://rspec.info/documentation/
|
109
|
+
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
110
|
+
source_code_uri: https://github.com/rspec/rspec-metagem
|
111
|
+
post_install_message:
|
78
112
|
rdoc_options:
|
79
|
-
- --charset=UTF-8
|
113
|
+
- "--charset=UTF-8"
|
80
114
|
require_paths:
|
81
115
|
- lib
|
82
116
|
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
-
none: false
|
84
117
|
requirements:
|
85
|
-
- -
|
118
|
+
- - ">="
|
86
119
|
- !ruby/object:Gem::Version
|
87
120
|
version: '0'
|
88
|
-
segments:
|
89
|
-
- 0
|
90
|
-
hash: -2006655497925343508
|
91
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
-
none: false
|
93
122
|
requirements:
|
94
|
-
- -
|
123
|
+
- - ">="
|
95
124
|
- !ruby/object:Gem::Version
|
96
125
|
version: '0'
|
97
|
-
segments:
|
98
|
-
- 0
|
99
|
-
hash: -2006655497925343508
|
100
126
|
requirements: []
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
summary: rspec-2.12.0
|
127
|
+
rubygems_version: 3.3.26
|
128
|
+
signing_key:
|
129
|
+
specification_version: 4
|
130
|
+
summary: rspec-3.13.0
|
106
131
|
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|
data/License.txt
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
(The MIT License)
|
2
|
-
|
3
|
-
Copyright (c) 2009 Chad Humphries, David Chelimsky
|
4
|
-
Copyright (c) 2006 David Chelimsky, The RSpec Development Team
|
5
|
-
Copyright (c) 2005 Steven Baker
|
6
|
-
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
-
a copy of this software and associated documentation files (the
|
9
|
-
"Software"), to deal in the Software without restriction, including
|
10
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
-
permit persons to whom the Software is furnished to do so, subject to
|
13
|
-
the following conditions:
|
14
|
-
|
15
|
-
The above copyright notice and this permission notice shall be
|
16
|
-
included in all copies or substantial portions of the Software.
|
17
|
-
|
18
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
21
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
22
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
23
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
24
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|