rspec 3.0.0 → 3.12.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.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YzRmODU1NjE0M2M2YTg3ZDk2YTM3MTM4ODhlM2RlOWMwZmI4NDhhMw==
5
- data.tar.gz: !binary |-
6
- NzdlZjFhZDI2OGZiNDE2OGVjZGI5ZDZmMjlmMzc1NmQ4MTI3MWJmNQ==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- OWE5ODJkNWM0ZjA5NDVhMGE0OGU0NmY0NGJhMWVkYTlhMmExODU5NWUzYzAw
10
- ZDZmNzY4YzRmYWI2ZWZmM2NlY2M4NmJjYjgzN2ZkNjA1NTg0N2FhN2UwMjQ3
11
- NTIyYjU5YTNiNjA4MWJiZThlODRjY2MxNWNmN2Q5OTgyZWZkNDM=
12
- data.tar.gz: !binary |-
13
- MTFhNzUyZGIxNTIxMDg0ZjJkNmViN2JiNjk4ZWViOGU1YTZmNWFjNTFmMzQz
14
- YzU4MjA1OTU3NzIwODc3OWZiYmNmZjE1ODQ0MDAwMDllM2RiYTNmYzI5NzZj
15
- Y2JmOTNlOTc0YWZlNzI0NDNjMDI5ZmQ1YmE4ZTE4MjE5MWE0ZmI=
2
+ SHA256:
3
+ metadata.gz: 5e70d1dfc48f9d1379c8b5433ec6a79dec83e7d2732d454dfacdaa0426149410
4
+ data.tar.gz: 3332c9154de297503db6855af08974a851c30822e24ffb3a0a2851700b2a6ee7
5
+ SHA512:
6
+ metadata.gz: f47629526826150b1e46030a609f467281f7054f9e9f19c3fe0a037ddc660dbddfefe304a5503701cde91327dda83ba5e9716675e6c76050bf6d9823f80fa89a
7
+ data.tar.gz: 974124e4f2ffa80e56b04471ce2b806ebc1f590f700e9ecde9fcf364eb521e31714bc24ef710a5cd055edc336c8b13e32160fa589a6d6fa0368e13268c42fd83
checksums.yaml.gz.sig CHANGED
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
@@ -2,46 +2,46 @@
2
2
 
3
3
  Behaviour Driven Development for Ruby
4
4
 
5
- # Description
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
- rspec is a meta-gem, which depends on the rspec-core, rspec-expectations
8
- and rspec-mocks gems. Each of these can be installed separately and actived in
9
- isolation with the `gem` command. Among other benefits, this allows you to use
10
- rspec-expectations, for example, in Test::Unit::TestCase if you happen to
11
- prefer that style.
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 mocha, rr
15
- or flexmock for mocking, you'll be able to do that without having to load the
16
- components of rspec that you're not using.
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
- ### rspec-core
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
- * [http://github.com/rspec/rspec-core](http://github.com/rspec/rspec-core)
46
- * [http://github.com/rspec/rspec-expectations](http://github.com/rspec/rspec-expectations)
47
- * [http://github.com/rspec/rspec-mocks](http://github.com/rspec/rspec-mocks)
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
@@ -1,5 +1,5 @@
1
1
  module RSpec # :nodoc:
2
2
  module Version # :nodoc:
3
- STRING = '3.0.0'
3
+ STRING = '3.12.0'
4
4
  end
5
5
  end
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: 3.0.0
4
+ version: 3.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Baker
@@ -10,80 +10,85 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain:
13
- - !binary |-
14
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURqakNDQW5hZ0F3SUJB
15
- Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJHTVJJd0VBWURWUVFEREFseWMz
16
- QmwKWXkxa1pYWXhHekFaQmdvSmtpYUprL0lzWkFFWkZndG5iMjluYkdWbmIz
17
- VndjekVUTUJFR0NnbVNKb21UOGl4awpBUmtXQTJOdmJUQWVGdzB4TXpFeE1E
18
- Y3hPVFF5TlRsYUZ3MHhOREV4TURjeE9UUXlOVGxhTUVZeEVqQVFCZ05WCkJB
19
- TU1DWEp6Y0dWakxXUmxkakViTUJrR0NnbVNKb21UOGl4a0FSa1dDMmR2YjJk
20
- c1pXZHZkWEJ6TVJNd0VRWUsKQ1pJbWlaUHlMR1FCR1JZRFkyOXRNSUlCSWpB
21
- TkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQQpuaENlWm91
22
- RExYV081NW5vK0VkWk5DdGpYamZKUTFYOVRiUGN2QkREMjlPeXBJVWNlMmgv
23
- VmRLWEIyZ0k3WkhzCkY1TmtQZ2dzbFRFckdGbVdBdElpdXI3dTk0M1JWcUhP
24
- c3lvSXN5MDY1RjlmQ3RyeWtrQSsyMmVsdlREaGE0SXoKUlVDdnVoUTNrbGF0
25
- WWs0akYrY0d0MWpOT05OVmRMT2l5MGJNeW52Y003aG9WUTJBb213R3MrY0VP
26
- V1EvNGRrRApKY05WM3FmekY1UUJjVEQyMzcyWE5NNTNiMjVuWVZRU1gyS0g1
27
- RkY3QmhsS3lvdjMzYk9tMmdBOU0rbVdJdWpXCnFna3l4VmxmcmxFK1pCZ1Yz
28
- d1huMUNvamcxTHBUcTM1eU9Bcmd3aW95cnd3bFpaSlI5am9OOXMvbkRrbGZy
29
- NUEKK2R5RVRqRmM2Y21FUFdacnQyY0pCUUlEQVFBQm80R0dNSUdETUFrR0Ex
30
- VWRFd1FDTUFBd0N3WURWUjBQQkFRRApBZ1N3TUIwR0ExVWREZ1FXQkJTVytX
31
- RDdobjFzd0oxQTdpOHRidUZldU5DSkNqQWtCZ05WSFJFRUhUQWJnUmx5CmMz
32
- QmxZeTFrWlhaQVoyOXZaMnhsWjI5MWNITXVZMjl0TUNRR0ExVWRFZ1FkTUJ1
33
- QkdYSnpjR1ZqTFdSbGRrQm4KYjI5bmJHVm5iM1Z3Y3k1amIyMHdEUVlKS29a
34
- SWh2Y05BUUVGQlFBRGdnRUJBSDI3akFaOHNEN3ZuWHVwajZZKwpCYUJkZkh0
35
- Q2tGYXNsTEowYUt1TURJVlh3WXVLZnFvVzE1Y1pQRExtU0lFQnVRRk0zbHc2
36
- ZC9oRUVMNFVvMmpaCkZ2dG1INU94aWZQRHpGeVV0Q0w0eXA2cWdOZS9YZjZz
37
- RHNSZzZGbUtjcGdxQ3dOT21zVmlhZjBMUFNVSC9HWVEKM1Rlb3o4UUNhRGJE
38
- N0FLc2ZmVDdlRHJuYkhuS3dlTzFYZGVtUkpDOTh1L3lZeG5Hek1TV0tFc24w
39
- OWV0QmxaOQo3SDY3azVaM3VmNmNmTFpnVG9XTDZ6U2h6WlkzTnVuNXI3M1lz
40
- TmYyL1FaT2U0VVplNHZmR3ZuNmJhdzUzeXM5CjF5SEMxQWNTWXB2aTJkQWJP
41
- aUhUNWlRRitrcm00d3NlOEtjdFhnVE5uak1zSEVvR0t1bEpTMi9zWmw5MGpj
42
- Q3oKbXVBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
43
- date: 2014-06-02 00:00:00.000000000 Z
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: 2022-10-26 00:00:00.000000000 Z
44
49
  dependencies:
45
50
  - !ruby/object:Gem::Dependency
46
51
  name: rspec-core
47
52
  requirement: !ruby/object:Gem::Requirement
48
53
  requirements:
49
- - - ~>
54
+ - - "~>"
50
55
  - !ruby/object:Gem::Version
51
- version: 3.0.0
56
+ version: 3.12.0
52
57
  type: :runtime
53
58
  prerelease: false
54
59
  version_requirements: !ruby/object:Gem::Requirement
55
60
  requirements:
56
- - - ~>
61
+ - - "~>"
57
62
  - !ruby/object:Gem::Version
58
- version: 3.0.0
63
+ version: 3.12.0
59
64
  - !ruby/object:Gem::Dependency
60
65
  name: rspec-expectations
61
66
  requirement: !ruby/object:Gem::Requirement
62
67
  requirements:
63
- - - ~>
68
+ - - "~>"
64
69
  - !ruby/object:Gem::Version
65
- version: 3.0.0
70
+ version: 3.12.0
66
71
  type: :runtime
67
72
  prerelease: false
68
73
  version_requirements: !ruby/object:Gem::Requirement
69
74
  requirements:
70
- - - ~>
75
+ - - "~>"
71
76
  - !ruby/object:Gem::Version
72
- version: 3.0.0
77
+ version: 3.12.0
73
78
  - !ruby/object:Gem::Dependency
74
79
  name: rspec-mocks
75
80
  requirement: !ruby/object:Gem::Requirement
76
81
  requirements:
77
- - - ~>
82
+ - - "~>"
78
83
  - !ruby/object:Gem::Version
79
- version: 3.0.0
84
+ version: 3.12.0
80
85
  type: :runtime
81
86
  prerelease: false
82
87
  version_requirements: !ruby/object:Gem::Requirement
83
88
  requirements:
84
- - - ~>
89
+ - - "~>"
85
90
  - !ruby/object:Gem::Version
86
- version: 3.0.0
91
+ version: 3.12.0
87
92
  description: BDD for Ruby
88
93
  email: rspec@googlegroups.com
89
94
  executables: []
@@ -91,33 +96,36 @@ extensions: []
91
96
  extra_rdoc_files:
92
97
  - README.md
93
98
  files:
99
+ - LICENSE.md
100
+ - README.md
94
101
  - lib/rspec.rb
95
102
  - lib/rspec/version.rb
96
- - License.txt
97
- - README.md
98
103
  homepage: http://github.com/rspec
99
104
  licenses:
100
105
  - MIT
101
- metadata: {}
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
102
111
  post_install_message:
103
112
  rdoc_options:
104
- - --charset=UTF-8
113
+ - "--charset=UTF-8"
105
114
  require_paths:
106
115
  - lib
107
116
  required_ruby_version: !ruby/object:Gem::Requirement
108
117
  requirements:
109
- - - ! '>='
118
+ - - ">="
110
119
  - !ruby/object:Gem::Version
111
120
  version: '0'
112
121
  required_rubygems_version: !ruby/object:Gem::Requirement
113
122
  requirements:
114
- - - ! '>='
123
+ - - ">="
115
124
  - !ruby/object:Gem::Version
116
125
  version: '0'
117
126
  requirements: []
118
- rubyforge_project: rspec
119
- rubygems_version: 2.0.7
127
+ rubygems_version: 3.1.6
120
128
  signing_key:
121
129
  specification_version: 4
122
- summary: rspec-3.0.0
130
+ summary: rspec-3.12.0
123
131
  test_files: []
metadata.gz.sig CHANGED
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.