rspec 2.99.0 → 3.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NmEzNTBiYmMxNWQ5OWM4ZGVlNmUyZDBmMTg3MmI2YzZjMzFjZmFjNg==
5
- data.tar.gz: !binary |-
6
- ZTMyNjY5ZTZiMTAyZWY4Y2MzMTFlMjA3MmFjYzdjMzAxYzdjNmQ4Mw==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- NzdlMDU4ZTA2NTIwMmExNTk0MjRiMWZlZjgxNWQ0YzRkYWU5NDM4MThjMTU5
10
- NzA4YjRhZDM4ZTU1ODA0MjM5MzRjZjE0Y2QyNTFhZGI3MmY1OTUyNDQxMTQ2
11
- NjY1NmI1YWIyNWMzNzRiZTAyNDg5ZDVkN2E4N2Y5NjE4YmUyNDY=
12
- data.tar.gz: !binary |-
13
- Nzc3ZGRlNzA0Y2E0NzJmYWFhYWU3MzYxYTE4YmJiMTJjMDE5YzI2MzRjNTg2
14
- YzJlNWViZGZjOGFiODEwOGRhNjg2MGY5ZmY3OWYyN2M1ZjFiZTkxOGNhNTFl
15
- ZTVjOTRhYTMyM2Y0NjE1OThjNTY3YjJmZGNjODNkMzMzODExNmM=
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 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.99.0'
3
+ STRING = '3.12.0'
4
4
  end
5
5
  end
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,92 +1,131 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.99.0
4
+ version: 3.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Baker
8
8
  - David Chelimsky
9
+ - Myron Marston
9
10
  autorequire:
10
11
  bindir: bin
11
- cert_chain: []
12
- date: 2014-06-01 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-10-26 00:00:00.000000000 Z
13
49
  dependencies:
14
50
  - !ruby/object:Gem::Dependency
15
51
  name: rspec-core
16
52
  requirement: !ruby/object:Gem::Requirement
17
53
  requirements:
18
- - - ~>
54
+ - - "~>"
19
55
  - !ruby/object:Gem::Version
20
- version: 2.99.0
56
+ version: 3.12.0
21
57
  type: :runtime
22
58
  prerelease: false
23
59
  version_requirements: !ruby/object:Gem::Requirement
24
60
  requirements:
25
- - - ~>
61
+ - - "~>"
26
62
  - !ruby/object:Gem::Version
27
- version: 2.99.0
63
+ version: 3.12.0
28
64
  - !ruby/object:Gem::Dependency
29
65
  name: rspec-expectations
30
66
  requirement: !ruby/object:Gem::Requirement
31
67
  requirements:
32
- - - ~>
68
+ - - "~>"
33
69
  - !ruby/object:Gem::Version
34
- version: 2.99.0
70
+ version: 3.12.0
35
71
  type: :runtime
36
72
  prerelease: false
37
73
  version_requirements: !ruby/object:Gem::Requirement
38
74
  requirements:
39
- - - ~>
75
+ - - "~>"
40
76
  - !ruby/object:Gem::Version
41
- version: 2.99.0
77
+ version: 3.12.0
42
78
  - !ruby/object:Gem::Dependency
43
79
  name: rspec-mocks
44
80
  requirement: !ruby/object:Gem::Requirement
45
81
  requirements:
46
- - - ~>
82
+ - - "~>"
47
83
  - !ruby/object:Gem::Version
48
- version: 2.99.0
84
+ version: 3.12.0
49
85
  type: :runtime
50
86
  prerelease: false
51
87
  version_requirements: !ruby/object:Gem::Requirement
52
88
  requirements:
53
- - - ~>
89
+ - - "~>"
54
90
  - !ruby/object:Gem::Version
55
- version: 2.99.0
91
+ version: 3.12.0
56
92
  description: BDD for Ruby
57
- email: rspec-users@rubyforge.org
93
+ email: rspec@googlegroups.com
58
94
  executables: []
59
95
  extensions: []
60
96
  extra_rdoc_files:
61
97
  - README.md
62
98
  files:
99
+ - LICENSE.md
100
+ - README.md
63
101
  - lib/rspec.rb
64
102
  - lib/rspec/version.rb
65
- - License.txt
66
- - README.md
67
103
  homepage: http://github.com/rspec
68
104
  licenses:
69
105
  - MIT
70
- 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
71
111
  post_install_message:
72
112
  rdoc_options:
73
- - --charset=UTF-8
113
+ - "--charset=UTF-8"
74
114
  require_paths:
75
115
  - lib
76
116
  required_ruby_version: !ruby/object:Gem::Requirement
77
117
  requirements:
78
- - - ! '>='
118
+ - - ">="
79
119
  - !ruby/object:Gem::Version
80
120
  version: '0'
81
121
  required_rubygems_version: !ruby/object:Gem::Requirement
82
122
  requirements:
83
- - - ! '>='
123
+ - - ">="
84
124
  - !ruby/object:Gem::Version
85
125
  version: '0'
86
126
  requirements: []
87
- rubyforge_project: rspec
88
- rubygems_version: 2.0.7
127
+ rubygems_version: 3.1.6
89
128
  signing_key:
90
129
  specification_version: 4
91
- summary: rspec-2.99.0
130
+ summary: rspec-3.12.0
92
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.