rspec 3.13.1 → 4.0.0.beta1
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
- checksums.yaml.gz.sig +0 -0
- data/LICENSE.md +18 -19
- data/README.md +4 -11
- data/lib/rspec/version.rb +3 -1
- data/lib/rspec.rb +2 -1
- data.tar.gz.sig +0 -0
- metadata +32 -31
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23e85e32f58e808b69b6d01dc011fffc68fb1dcdb0d9878f3deaea51a6f9dfa2
|
|
4
|
+
data.tar.gz: 3f1dc752474f4899922d20a90a3cebdd41d8ee06e97e58ce6f662ba85505264e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52d603c785a1bbb841cbb55d628450b95cedaaa195e3db3cc3376214c0057df2181941f405b5ee5ca2d8a48e6d6cd3a942b0bc8fa4fdb371175c4667e08578aa
|
|
7
|
+
data.tar.gz: b9a8da9e877a87e68bea841241370aea2becd7852f7dd0f757683547a65afc7c6c1f403f57ae610a567eb82cf7868b9455cea273a41e8800919fd48647431cb1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/LICENSE.md
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
-
Copyright ©
|
|
5
|
-
Copyright ©
|
|
6
|
-
Copyright ©
|
|
4
|
+
* Copyright © 2013 David Chelimsky, Myron Marston, Jon Rowe, Sam Phippen, Xavier Shay, Bradley Schaefer
|
|
5
|
+
* Copyright © 2012 David Chelimsky, Myron Marston
|
|
6
|
+
* Copyright © 2006 David Chelimsky, The RSpec Development Team
|
|
7
|
+
* Copyright © 2005 Steven Baker
|
|
7
8
|
|
|
8
|
-
Permission is hereby granted, free of charge, to any person
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
conditions:
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10
|
+
a copy of this software and associated documentation files (the
|
|
11
|
+
"Software"), to deal in the Software without restriction, including
|
|
12
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
14
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
15
|
+
the following conditions:
|
|
16
16
|
|
|
17
17
|
The above copyright notice and this permission notice shall be
|
|
18
18
|
included in all copies or substantial portions of the Software.
|
|
19
19
|
|
|
20
|
-
THE SOFTWARE IS PROVIDED
|
|
21
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
21
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
22
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
23
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
24
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
25
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
26
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -2,16 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Behaviour Driven Development for Ruby
|
|
4
4
|
|
|
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**
|
|
8
|
-
|
|
9
5
|
## Description
|
|
10
6
|
|
|
11
7
|
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
|
|
8
|
+
[rspec-core](https://github.com/rspec/rspec/tree/main/rspec-core),
|
|
9
|
+
[rspec-expectations](https://github.com/rspec/rspec/tree/main/rspec-expectations)
|
|
10
|
+
and [rspec-mocks](https://github.com/rspec/rspec/tree/main/rspec-mocks) gems. Each of these
|
|
15
11
|
can be installed separately and loaded in isolation using `require`. Among
|
|
16
12
|
other benefits, this allows you to use rspec-expectations, for example, in
|
|
17
13
|
Test::Unit::TestCase if you happen to prefer that style.
|
|
@@ -37,11 +33,8 @@ See http://rspec.info/documentation/ for links to documentation for all gems.
|
|
|
37
33
|
|
|
38
34
|
## Contribute
|
|
39
35
|
|
|
40
|
-
* [http://github.com/rspec/rspec
|
|
36
|
+
* [http://github.com/rspec/rspec](http://github.com/rspec/rspec)
|
|
41
37
|
|
|
42
38
|
## Also see
|
|
43
39
|
|
|
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
40
|
* [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
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0.beta1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Baker
|
|
@@ -11,11 +11,11 @@ bindir: bin
|
|
|
11
11
|
cert_chain:
|
|
12
12
|
- |
|
|
13
13
|
-----BEGIN CERTIFICATE-----
|
|
14
|
-
|
|
14
|
+
MIIFvjCCA6agAwIBAgIJAPXjfUbCjdXWMA0GCSqGSIb3DQEBCwUAMIGAMQswCQYD
|
|
15
15
|
VQQGEwJVUzETMBEGA1UECAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEO
|
|
16
16
|
MAwGA1UECgwFUlNwZWMxEzARBgNVBAMMCnJzcGVjLmluZm8xJTAjBgkqhkiG9w0B
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
CQEWFnJzcGVjQGdvb2dsZWdyb3Vwcy5jb20wHhcNMjYwMjE3MTE0ODM0WhcNMjcw
|
|
18
|
+
MjE3MTE0ODM0WjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24x
|
|
19
19
|
EDAOBgNVBAcMB1NlYXR0bGUxDjAMBgNVBAoMBVJTcGVjMRMwEQYDVQQDDApyc3Bl
|
|
20
20
|
Yy5pbmZvMSUwIwYJKoZIhvcNAQkBFhZyc3BlY0Bnb29nbGVncm91cHMuY29tMIIC
|
|
21
21
|
IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSmjgcHaKlD0jizRJowi2bGI
|
|
@@ -31,17 +31,17 @@ cert_chain:
|
|
|
31
31
|
gpEMqf80lEmhX59VUsm0Pv6OEo+ZPHBvXPiJA6DShQh9t3YtpwyA8uVDMbT/i32u
|
|
32
32
|
2FUsqZbbJcCmkBrGposCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
|
33
33
|
HQYDVR0OBBYEFPPvQ5XT0Nvuhi6k+hrWVv35J+TeMA0GCSqGSIb3DQEBCwUAA4IC
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
34
|
+
AQBaeeGIZtBFDP33D1/4sXldSgwntVcL5qC5pcjamLWM4HK4/a6ePMy1uoX+dEnJ
|
|
35
|
+
J+BjZWURsUfFOob+xnUe8AMSbv9gupckfVehZoBzOvJDaWcALo8GKjJlmVtzEIqZ
|
|
36
|
+
TvBLO5zQwR4cWIrg0NWjkDOSQOrNNQ2Degv/aOFrR8dFPJSgxZG/IC0/t6s72cEt
|
|
37
|
+
V4SIe/NLIU4RyBzfgn/RBsalDEF1yIVlDWspMa78clS3bPmntkNyfLwIUwINDHhn
|
|
38
|
+
swFA8bEKMQWqRlupuRmEiy3nGe6az46YlPXzK5UWfXJ6Lb1wIE8W80TRx0HpSC7j
|
|
39
|
+
JfXPfQ0PLgiU4nnQqain2bIn96Ooco8kspeqp8rSJ8sbaMPTNmcFuwD3gzWsRnJ3
|
|
40
|
+
rIaJbmrUcq6DlJ7jfv3u5TPt4JWzDP7oDPf3nXNiF2Cn48Ne598G5lHH6Heyxe39
|
|
41
|
+
pYZdhEptKJWPHxbJWHXD02omKprkNuQKHpnXrW+mmbiO4IcqAMggiud+DaEQg20x
|
|
42
|
+
Dae4cNbvK5p3D+5xqvcEO2G4uCMDmJjrSd61kvTLBnm1qroHqrpi9GauEVWZZmD0
|
|
43
|
+
n0ph8oFAXOsKQWxZ+4uh6yGISk+WhngCZEVPZUjq7SIGAuVhQy2ZgwdjnLEz//lD
|
|
44
|
+
x0Qexp5yGeoxAL9qKM/RXYKtuRZBJV1z+L9A1YOtwaXXNg==
|
|
45
45
|
-----END CERTIFICATE-----
|
|
46
46
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
47
47
|
dependencies:
|
|
@@ -49,44 +49,44 @@ dependencies:
|
|
|
49
49
|
name: rspec-core
|
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 4.0.0.beta1
|
|
55
55
|
type: :runtime
|
|
56
56
|
prerelease: false
|
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
61
|
+
version: 4.0.0.beta1
|
|
62
62
|
- !ruby/object:Gem::Dependency
|
|
63
63
|
name: rspec-expectations
|
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
68
|
+
version: 4.0.0.beta1
|
|
69
69
|
type: :runtime
|
|
70
70
|
prerelease: false
|
|
71
71
|
version_requirements: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version:
|
|
75
|
+
version: 4.0.0.beta1
|
|
76
76
|
- !ruby/object:Gem::Dependency
|
|
77
77
|
name: rspec-mocks
|
|
78
78
|
requirement: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
|
-
- -
|
|
80
|
+
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
82
|
+
version: 4.0.0.beta1
|
|
83
83
|
type: :runtime
|
|
84
84
|
prerelease: false
|
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- -
|
|
87
|
+
- - '='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
89
|
+
version: 4.0.0.beta1
|
|
90
90
|
description: BDD for Ruby
|
|
91
91
|
email: rspec@googlegroups.com
|
|
92
92
|
executables: []
|
|
@@ -105,7 +105,8 @@ metadata:
|
|
|
105
105
|
bug_tracker_uri: https://github.com/rspec/rspec/issues
|
|
106
106
|
documentation_uri: https://rspec.info/documentation/
|
|
107
107
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
|
108
|
-
|
|
108
|
+
rubygems_mfa_required: 'true'
|
|
109
|
+
source_code_uri: https://github.com/rspec/rspec/tree/rspec-v4.0.0.beta1/rspec
|
|
109
110
|
rdoc_options:
|
|
110
111
|
- "--charset=UTF-8"
|
|
111
112
|
require_paths:
|
|
@@ -114,14 +115,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
114
115
|
requirements:
|
|
115
116
|
- - ">="
|
|
116
117
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
118
|
+
version: 3.0.0
|
|
118
119
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
120
|
requirements:
|
|
120
121
|
- - ">="
|
|
121
122
|
- !ruby/object:Gem::Version
|
|
122
123
|
version: '0'
|
|
123
124
|
requirements: []
|
|
124
|
-
rubygems_version:
|
|
125
|
+
rubygems_version: 4.0.3
|
|
125
126
|
specification_version: 4
|
|
126
|
-
summary: rspec-
|
|
127
|
+
summary: rspec-4.0.0.beta1
|
|
127
128
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|