sspec 3.8.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 +7 -0
- data/LICENSE.md +27 -0
- data/README.md +43 -0
- data/lib/rspec.rb +3 -0
- data/lib/rspec/version.rb +5 -0
- metadata +96 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: '0833300f1f6ccc13c9ffc530f6a3d2ca2792765bc403f5e08a5ec180edb0c827'
|
|
4
|
+
data.tar.gz: 5b9b1aeedae736fdd1770bc0d7173add6004dc5a365e46b6d9ef6a39b4f8c123
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: d2561a401b91397a9275dddfe0f4d659a293beafde0bcf3cf2745ea7c615b89ce0bf708b46af59eecdcd0d1cf92b0967dbc39646d4936f99fb2f8147e8cb46fa
|
|
7
|
+
data.tar.gz: 77d714f4a45a75d818d442719e04785ba360b7651ef9b5815ad1428b2311073928978a6a20ae0517780fb206b27ea94155fb56146f4882ee5737973a2b1c1389
|
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
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# RSpec
|
|
2
|
+
|
|
3
|
+
Behaviour Driven Development for Ruby
|
|
4
|
+
|
|
5
|
+
# Description
|
|
6
|
+
|
|
7
|
+
rspec is a meta-gem, which depends on the
|
|
8
|
+
[rspec-core](https://github.com/rspec/rspec-core),
|
|
9
|
+
[rspec-expectations](https://github.com/rspec/rspec-expectations)
|
|
10
|
+
and [rspec-mocks](https://github.com/rspec/rspec-mocks) gems. Each of these
|
|
11
|
+
can be installed separately and loaded in isolation using `require`. Among
|
|
12
|
+
other benefits, this allows you to use rspec-expectations, for example, in
|
|
13
|
+
Test::Unit::TestCase if you happen to prefer that style.
|
|
14
|
+
|
|
15
|
+
Conversely, if you like RSpec's approach to declaring example groups and
|
|
16
|
+
examples (`describe` and `it`) but prefer Test::Unit assertions and
|
|
17
|
+
[mocha](https://github.com/freerange/mocha), [rr](https://github.com/rr/rr)
|
|
18
|
+
or [flexmock](https://github.com/jimweirich/flexmock) for mocking, you'll be
|
|
19
|
+
able to do that without having to install or load the components of RSpec that
|
|
20
|
+
you're not using.
|
|
21
|
+
|
|
22
|
+
## Documentation
|
|
23
|
+
|
|
24
|
+
See http://rspec.info/documentation/ for links to documentation for all gems.
|
|
25
|
+
|
|
26
|
+
## Install
|
|
27
|
+
|
|
28
|
+
gem install rspec
|
|
29
|
+
|
|
30
|
+
## Setup
|
|
31
|
+
|
|
32
|
+
rspec --init
|
|
33
|
+
|
|
34
|
+
## Contribute
|
|
35
|
+
|
|
36
|
+
* [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
|
|
37
|
+
|
|
38
|
+
## Also see
|
|
39
|
+
|
|
40
|
+
* [https://github.com/rspec/rspec-core](https://github.com/rspec/rspec-core)
|
|
41
|
+
* [https://github.com/rspec/rspec-expectations](https://github.com/rspec/rspec-expectations)
|
|
42
|
+
* [https://github.com/rspec/rspec-mocks](https://github.com/rspec/rspec-mocks)
|
|
43
|
+
* [https://github.com/rspec/rspec-rails](https://github.com/rspec/rspec-rails)
|
data/lib/rspec.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sspec
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 3.8.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Steven Baker
|
|
8
|
+
- David Chelimsky
|
|
9
|
+
- Myron Marston
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2019-04-14 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rspec-core
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
requirements:
|
|
19
|
+
- - "~>"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 3.8.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: 3.8.0
|
|
29
|
+
- !ruby/object:Gem::Dependency
|
|
30
|
+
name: rspec-expectations
|
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - "~>"
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 3.8.0
|
|
36
|
+
type: :runtime
|
|
37
|
+
prerelease: false
|
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 3.8.0
|
|
43
|
+
- !ruby/object:Gem::Dependency
|
|
44
|
+
name: rspec-mocks
|
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 3.8.0
|
|
50
|
+
type: :runtime
|
|
51
|
+
prerelease: false
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - "~>"
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: 3.8.0
|
|
57
|
+
description: BDD for Ruby
|
|
58
|
+
email: rspec@googlegroups.com
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files:
|
|
62
|
+
- README.md
|
|
63
|
+
files:
|
|
64
|
+
- LICENSE.md
|
|
65
|
+
- README.md
|
|
66
|
+
- lib/rspec.rb
|
|
67
|
+
- lib/rspec/version.rb
|
|
68
|
+
homepage: http://github.com/rspec
|
|
69
|
+
licenses:
|
|
70
|
+
- MIT
|
|
71
|
+
metadata:
|
|
72
|
+
bug_tracker_uri: https://github.com/rspec/rspec/issues
|
|
73
|
+
documentation_uri: https://rspec.info/documentation/
|
|
74
|
+
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
|
75
|
+
source_code_uri: https://github.com/rspec/rspec
|
|
76
|
+
post_install_message:
|
|
77
|
+
rdoc_options:
|
|
78
|
+
- "--charset=UTF-8"
|
|
79
|
+
require_paths:
|
|
80
|
+
- lib
|
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
|
+
requirements:
|
|
83
|
+
- - ">="
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '0'
|
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - ">="
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '0'
|
|
91
|
+
requirements: []
|
|
92
|
+
rubygems_version: 3.0.3
|
|
93
|
+
signing_key:
|
|
94
|
+
specification_version: 4
|
|
95
|
+
summary: rspec-3.8.0
|
|
96
|
+
test_files: []
|