rspec 2.14.0 → 3.13.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8dd8c8bb2527d6cc733008d0a460db27532d25df833c8d62bab30fee0559426d
4
+ data.tar.gz: 1f0950c1a20ad216a01e39c324472077108ced4446b9937164142688c493f684
5
+ SHA512:
6
+ metadata.gz: 007facb7bf93c7be529e1dbe7005ed8b11ab92d876cdf657903a0a51e9608ea08de2ba2c5587e00782156926fdf2bdbf87f1c573d986752cb904b367526471ba
7
+ data.tar.gz: b089f7a23678b2f42d8e38fc65827342621192357acb99d5e98f541c4995aad4dc11a52ceaddb967ed886e13141c78acda37b1ecb2ed94bcb5ac128c10f066ce
checksums.yaml.gz.sig ADDED
@@ -0,0 +1,2 @@
1
+ R����qv<�(�)�����|f@ l�݁���6e,f��t���X���Y�_@�a�a$�"��}�ҿ7�0�i߲J�{���� ���F8A�YV��s����z�����>k�eb�1[I�i���Z�6�y`1C�c7�XH�0�{c<���*�Rq��,�)� �nO�;'-��Z8��S/7� �ڔ"�)���]�/��o2�s�ɉN��E"—`9�����GH}4O=!<Ŵ8s`������rű���r��FTYp�����
2
+ ���T5�{�)���,�!�wπ����x�B�n�M+nb����<0Ŋ�nL�"� ��
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.14.0'
3
+ STRING = '3.13.1'
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,127 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 2.14.0
4
+ version: 3.13.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Steven Baker
9
8
  - David Chelimsky
10
- autorequire:
9
+ - Myron Marston
11
10
  bindir: bin
12
- cert_chain: []
13
- date: 2013-07-06 00:00:00.000000000 Z
11
+ cert_chain:
12
+ - |
13
+ -----BEGIN CERTIFICATE-----
14
+ MIIFvjCCA6agAwIBAgIJAPXjfUbCjdXVMA0GCSqGSIb3DQEBCwUAMIGAMQswCQYD
15
+ VQQGEwJVUzETMBEGA1UECAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEO
16
+ MAwGA1UECgwFUlNwZWMxEzARBgNVBAMMCnJzcGVjLmluZm8xJTAjBgkqhkiG9w0B
17
+ CQEWFnJzcGVjQGdvb2dsZWdyb3Vwcy5jb20wHhcNMjUwMjA2MTE0NjU2WhcNMjYw
18
+ MjA2MTE0NjU2WjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24x
19
+ EDAOBgNVBAcMB1NlYXR0bGUxDjAMBgNVBAoMBVJTcGVjMRMwEQYDVQQDDApyc3Bl
20
+ Yy5pbmZvMSUwIwYJKoZIhvcNAQkBFhZyc3BlY0Bnb29nbGVncm91cHMuY29tMIIC
21
+ IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSmjgcHaKlD0jizRJowi2bGI
22
+ KMOHnJoExxRNHHxH+3w9kkl95YldvDRVX495b13ZCzwRe0AyqX24wq04tp0G5Z5C
23
+ e/w2pnNK4ol1eECPwQu+YGpepeODlZICL5gwQspe0cDifbBnHx5QySMiPpvx6bC0
24
+ tQTox0ppDIaMhch8IPCwyoE4DQK5bpsdwnLSHTsQjUIb7IM8tUMpd/iKrJgNffwc
25
+ 6gC1TmhIlzQoB26nCNh9uK7xZjUM+sGECzvcYuImchUaIgJA/ybrlZS+m/hxzvBo
26
+ mLnn/xNEC6Vz5HG+3TR0Gb0cSUf6XUu2s51Jk/SJi3MhCZp2gs9OUg4EVZNzQVkZ
27
+ efLBjAZG2Mxk14JyB4/Omc+Jk0ajprINCBbUNnxzCJrYDM3J9TVWIwyUGNX/U3MO
28
+ s3tMAT+EVgx/mZMPnBO8EULlyF51MRUp3Wy9Mnw8AYLk30UnMG5AjqgO5JNyFlA7
29
+ Xeh3EVdWY3vMB1pkhPwlsenpcmj5gOzrd54lELOVbCGHCf48iSqeflY2Lhe0pvzK
30
+ blXCJBDmtrebvus291rM/dHcbEfK1SVd5Wut/n131iouf6dnNCFskFygDcgBbthC
31
+ gpEMqf80lEmhX59VUsm0Pv6OEo+ZPHBvXPiJA6DShQh9t3YtpwyA8uVDMbT/i32u
32
+ 2FUsqZbbJcCmkBrGposCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
33
+ HQYDVR0OBBYEFPPvQ5XT0Nvuhi6k+hrWVv35J+TeMA0GCSqGSIb3DQEBCwUAA4IC
34
+ AQBGBr0ll2yLrkO6IeK5Q7qZFnANaUCKfi6Of9VztZJXgKAU5KAQxyOidGktoA5N
35
+ lp+bFKudRkW8jSehqoNaNBdSZ9Bc07EGMXIhUFJZF9rq7Z2SKPwUm6EaSsBK13QR
36
+ U4K6wuaw5ZJSFzklapoGOJRGnFlnNtlhNFY6+tTwCeblwZbcuYGyGY8+Rg7GbyVl
37
+ 3Tr4Gi1aS/qG/MDXKdE8HWm39dmaAMdbw6dg1VBd0JrX2VqH7xvE1dM/D3OlKrNp
38
+ gNFRNJig3Y8qPjocZR0cGkhgZoC9wribWxHSNawZm4CoV3fja2HNx9QyM7BaB+as
39
+ yuqAiBbA7vBcyc8nKATip3mxbyXYXoDD7nmO8JCPP7O/WsgG+U/B2a0kPdvYFoxE
40
+ Q0Js3GtFCuMvL+0rifqdxBOLtu0Pw9q4RvToTJIl2IR6eTgCb82B1hw9qKf7PjuL
41
+ BoEsYjjDhGw6FZvcJG8O6uj7aB+z4aF21YR74UGL7sq/RIPNNez5JI95jTGfqCPy
42
+ 6yo0w3zja3yg28QK3Fj+tbOHeSLv9SDQWi/1jiPprGzbxGvbVvjvX11YZc46vkmY
43
+ AwP+qZPPf97FXXZGEGIYhhHpnj+Ltx9nCetRPiZ4rvYBcXgCWVQSg6eiEofrMwn/
44
+ AKMCABhZ1Y2eATsfMgdkmIZk7JIPZiSi6eUxPiCMP9M/pw==
45
+ -----END CERTIFICATE-----
46
+ date: 1980-01-02 00:00:00.000000000 Z
14
47
  dependencies:
15
48
  - !ruby/object:Gem::Dependency
16
- version_requirements: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - ~>
19
- - !ruby/object:Gem::Version
20
- version: 2.14.0
21
- none: false
22
- prerelease: false
23
49
  name: rspec-core
24
50
  requirement: !ruby/object:Gem::Requirement
25
51
  requirements:
26
- - - ~>
52
+ - - "~>"
27
53
  - !ruby/object:Gem::Version
28
- version: 2.14.0
29
- none: false
54
+ version: 3.13.0
30
55
  type: :runtime
31
- - !ruby/object:Gem::Dependency
56
+ prerelease: false
32
57
  version_requirements: !ruby/object:Gem::Requirement
33
58
  requirements:
34
- - - ~>
59
+ - - "~>"
35
60
  - !ruby/object:Gem::Version
36
- version: 2.14.0
37
- none: false
38
- prerelease: false
61
+ version: 3.13.0
62
+ - !ruby/object:Gem::Dependency
39
63
  name: rspec-expectations
40
64
  requirement: !ruby/object:Gem::Requirement
41
65
  requirements:
42
- - - ~>
66
+ - - "~>"
43
67
  - !ruby/object:Gem::Version
44
- version: 2.14.0
45
- none: false
68
+ version: 3.13.0
46
69
  type: :runtime
47
- - !ruby/object:Gem::Dependency
70
+ prerelease: false
48
71
  version_requirements: !ruby/object:Gem::Requirement
49
72
  requirements:
50
- - - ~>
73
+ - - "~>"
51
74
  - !ruby/object:Gem::Version
52
- version: 2.14.0
53
- none: false
54
- prerelease: false
75
+ version: 3.13.0
76
+ - !ruby/object:Gem::Dependency
55
77
  name: rspec-mocks
56
78
  requirement: !ruby/object:Gem::Requirement
57
79
  requirements:
58
- - - ~>
80
+ - - "~>"
59
81
  - !ruby/object:Gem::Version
60
- version: 2.14.0
61
- none: false
82
+ version: 3.13.0
62
83
  type: :runtime
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.13.0
63
90
  description: BDD for Ruby
64
- email: rspec-users@rubyforge.org
91
+ email: rspec@googlegroups.com
65
92
  executables: []
66
93
  extensions: []
67
94
  extra_rdoc_files:
68
95
  - README.md
69
96
  files:
97
+ - LICENSE.md
98
+ - README.md
70
99
  - lib/rspec.rb
71
100
  - lib/rspec/version.rb
72
- - License.txt
73
- - README.md
74
- homepage: http://github.com/rspec
101
+ homepage: https://rspec.info
75
102
  licenses:
76
103
  - MIT
77
- post_install_message:
104
+ metadata:
105
+ bug_tracker_uri: https://github.com/rspec/rspec/issues
106
+ documentation_uri: https://rspec.info/documentation/
107
+ mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
108
+ source_code_uri: https://github.com/rspec/rspec/blob/rspec-metagem-v3.13.1/rspec
78
109
  rdoc_options:
79
- - --charset=UTF-8
110
+ - "--charset=UTF-8"
80
111
  require_paths:
81
112
  - lib
82
113
  required_ruby_version: !ruby/object:Gem::Requirement
83
114
  requirements:
84
- - - ! '>='
115
+ - - ">="
85
116
  - !ruby/object:Gem::Version
86
117
  version: '0'
87
- segments:
88
- - 0
89
- hash: 2414898831238900642
90
- none: false
91
118
  required_rubygems_version: !ruby/object:Gem::Requirement
92
119
  requirements:
93
- - - ! '>='
120
+ - - ">="
94
121
  - !ruby/object:Gem::Version
95
122
  version: '0'
96
- segments:
97
- - 0
98
- hash: 2414898831238900642
99
- none: false
100
123
  requirements: []
101
- rubyforge_project: rspec
102
- rubygems_version: 1.8.24
103
- signing_key:
104
- specification_version: 3
105
- summary: rspec-2.14.0
124
+ rubygems_version: 3.6.7
125
+ specification_version: 4
126
+ summary: rspec-3.13.1
106
127
  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.