rspec 2.11.0 → 3.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3f46a279afd44e50ffd39ade0a8f1b7545efa378d1a338e7000d037eef7a798c
4
+ data.tar.gz: 2653fc222fc8a256ade0d9220d259230b9cdd08a8c4db1e8f2e139b1cf054d8e
5
+ SHA512:
6
+ metadata.gz: d536350ef5f4404bc03bb9d3b5bc98e5cd089db0617ef1bfcb6a70cde7cb0d8e62c49e02e955009e485e1618d8d0d206b7d72cb51eec9d99fd9f46a364ae92e0
7
+ data.tar.gz: c49024045edd4aa69e4a5f43e5049320323d9be8ca613911dc009b43a042d135873f93e45559ad87d39ef9bc24870ff6e38274e94fb008d82a466950aecddbb9
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-2
1
+ # RSpec
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-2.x 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 = '2.11.0'
3
+ STRING = '3.11.0'
4
4
  end
5
5
  end
data/lib/rspec.rb CHANGED
@@ -1,4 +1,3 @@
1
1
  require 'rspec/core'
2
- require 'rspec/expectations'
3
- require 'rspec/mocks'
4
2
  require 'rspec/version'
3
+
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: 2.11.0
5
- prerelease:
4
+ version: 3.11.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Steven Baker
9
8
  - David Chelimsky
10
- autorequire:
9
+ - Myron Marston
10
+ autorequire:
11
11
  bindir: bin
12
- cert_chain: []
13
- date: 2012-07-07 00:00:00.000000000 Z
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: 2022-02-09 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: 2.11.0
56
+ version: 3.11.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: 2.11.0
63
+ version: 3.11.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: 2.11.0
70
+ version: 3.11.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: 2.11.0
77
+ version: 3.11.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: 2.11.0
84
+ version: 3.11.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: 2.11.0
91
+ version: 3.11.0
63
92
  description: BDD for Ruby
64
- email: rspec-users@rubyforge.org
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
- post_install_message:
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: 1841588248854093202
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: 1841588248854093202
100
126
  requirements: []
101
- rubyforge_project: rspec
102
- rubygems_version: 1.8.24
103
- signing_key:
104
- specification_version: 3
105
- summary: rspec-2.11.0
127
+ rubygems_version: 3.3.3
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: rspec-3.11.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.