dry-testing 1.1.2 → 1.2.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 +4 -4
- data/LICENSE +1 -1
- data/README.md +2 -28
- data/dry-testing.gemspec +19 -17
- data/lib/dry/testing/version.rb +3 -1
- data/lib/dry/testing.rb +7 -0
- data/lib/dry-testing.rb +3 -5
- metadata +40 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcf23a4649551b3318e38f502556c9265fd833a47f60ab2af52a3af5c7cc893a
|
|
4
|
+
data.tar.gz: 6ad0aa6e8ba64ebb8bb3109e32f5ba3df7e73750098cb3eff1f4e6598ba9f71d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bed3c773b742a8b77e33ce6c07a7eabbd3645079de7c52eccb40e5195b540aa6130dece51f2baa7dc9d0685fef96ae9d81545059ef9e4c1cedcf953d1d1a905b
|
|
7
|
+
data.tar.gz: 243dfe2833cc4da2c4e69619c02f314109a1397098eb084c076f2e5b5e0e58909eb5fa5c3b0941d122ea2f61e9abde7870c4f2cb49bb3aa6b7b8adb91a5cd6ba
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,29 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
[actions]: https://github.com/dry-rb/dry-testing/actions
|
|
3
|
-
[codacy]: https://www.codacy.com/gh/dry-rb/dry-testing
|
|
4
|
-
[chat]: https://dry-rb.zulipchat.com
|
|
5
|
-
[inchpages]: http://inch-ci.org/github/dry-rb/dry-testing
|
|
1
|
+
# Testing gem
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
[][gem]
|
|
10
|
-
[][actions]
|
|
11
|
-
[][codacy]
|
|
12
|
-
[][codacy]
|
|
13
|
-
[][inchpages]
|
|
14
|
-
|
|
15
|
-
## Links
|
|
16
|
-
|
|
17
|
-
* [User documentation](http://dry-rb.org/gems/dry-testing)
|
|
18
|
-
* [API documentation](http://rubydoc.info/gems/dry-testing)
|
|
19
|
-
|
|
20
|
-
## Supported Ruby versions
|
|
21
|
-
|
|
22
|
-
This library officially supports the following Ruby versions:
|
|
23
|
-
|
|
24
|
-
* MRI >= `2.5`
|
|
25
|
-
* jruby >= `9.2`
|
|
26
|
-
|
|
27
|
-
## License
|
|
28
|
-
|
|
29
|
-
See `LICENSE` file.
|
|
3
|
+
This is a testing gem only. Do not use or install.
|
data/dry-testing.gemspec
CHANGED
|
@@ -1,32 +1,34 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
|
-
# this file is managed by dry-rb/devtools project
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
# this file is synced from dry-rb/template-gem project
|
|
4
|
+
|
|
5
|
+
lib = File.expand_path("lib", __dir__)
|
|
5
6
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
6
|
-
require
|
|
7
|
+
require "dry/testing/version"
|
|
7
8
|
|
|
8
9
|
Gem::Specification.new do |spec|
|
|
9
|
-
spec.name =
|
|
10
|
-
spec.authors = ["
|
|
11
|
-
spec.email = ["
|
|
12
|
-
spec.license =
|
|
10
|
+
spec.name = "dry-testing"
|
|
11
|
+
spec.authors = ["Hanakai team"]
|
|
12
|
+
spec.email = ["info@hanakai.org"]
|
|
13
|
+
spec.license = "MIT"
|
|
13
14
|
spec.version = Dry::Testing::VERSION.dup
|
|
14
15
|
|
|
15
16
|
spec.summary = "this is a gem that is used for testing purposes only - do not install it, do not use it"
|
|
16
17
|
spec.description = spec.summary
|
|
17
|
-
spec.homepage =
|
|
18
|
+
spec.homepage = "https://dry-rb.org/gems/dry-testing"
|
|
18
19
|
spec.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-testing.gemspec", "lib/**/*"]
|
|
19
|
-
spec.bindir =
|
|
20
|
+
spec.bindir = "bin"
|
|
20
21
|
spec.executables = []
|
|
21
|
-
spec.require_paths = [
|
|
22
|
+
spec.require_paths = ["lib"]
|
|
22
23
|
|
|
23
|
-
spec.metadata[
|
|
24
|
-
spec.metadata[
|
|
25
|
-
spec.metadata[
|
|
26
|
-
spec.metadata[
|
|
24
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
25
|
+
spec.metadata["changelog_uri"] = "https://github.com/dry-rb/dry-testing/blob/main/CHANGELOG.md"
|
|
26
|
+
spec.metadata["source_code_uri"] = "https://github.com/dry-rb/dry-testing"
|
|
27
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/dry-rb/dry-testing/issues"
|
|
27
28
|
|
|
28
|
-
spec.required_ruby_version = ">= 2.
|
|
29
|
+
spec.required_ruby_version = ">= 2.7.0"
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
spec.add_development_dependency "
|
|
31
|
+
spec.add_development_dependency "rake"
|
|
32
|
+
spec.add_development_dependency "rspec"
|
|
33
|
+
spec.add_development_dependency "yard"
|
|
32
34
|
end
|
data/lib/dry/testing/version.rb
CHANGED
data/lib/dry/testing.rb
ADDED
data/lib/dry-testing.rb
CHANGED
metadata
CHANGED
|
@@ -1,33 +1,60 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dry-testing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Hanakai team
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rake
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "
|
|
16
|
+
- - ">="
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
18
|
+
version: '0'
|
|
20
19
|
type: :development
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
|
-
- - "
|
|
23
|
+
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rspec
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: yard
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
27
54
|
description: this is a gem that is used for testing purposes only - do not install
|
|
28
55
|
it, do not use it
|
|
29
56
|
email:
|
|
30
|
-
-
|
|
57
|
+
- info@hanakai.org
|
|
31
58
|
executables: []
|
|
32
59
|
extensions: []
|
|
33
60
|
extra_rdoc_files: []
|
|
@@ -37,16 +64,16 @@ files:
|
|
|
37
64
|
- README.md
|
|
38
65
|
- dry-testing.gemspec
|
|
39
66
|
- lib/dry-testing.rb
|
|
67
|
+
- lib/dry/testing.rb
|
|
40
68
|
- lib/dry/testing/version.rb
|
|
41
69
|
homepage: https://dry-rb.org/gems/dry-testing
|
|
42
70
|
licenses:
|
|
43
71
|
- MIT
|
|
44
72
|
metadata:
|
|
45
73
|
allowed_push_host: https://rubygems.org
|
|
46
|
-
changelog_uri: https://github.com/dry-rb/dry-testing/blob/
|
|
74
|
+
changelog_uri: https://github.com/dry-rb/dry-testing/blob/main/CHANGELOG.md
|
|
47
75
|
source_code_uri: https://github.com/dry-rb/dry-testing
|
|
48
76
|
bug_tracker_uri: https://github.com/dry-rb/dry-testing/issues
|
|
49
|
-
post_install_message:
|
|
50
77
|
rdoc_options: []
|
|
51
78
|
require_paths:
|
|
52
79
|
- lib
|
|
@@ -54,15 +81,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
54
81
|
requirements:
|
|
55
82
|
- - ">="
|
|
56
83
|
- !ruby/object:Gem::Version
|
|
57
|
-
version: 2.
|
|
84
|
+
version: 2.7.0
|
|
58
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
86
|
requirements:
|
|
60
87
|
- - ">="
|
|
61
88
|
- !ruby/object:Gem::Version
|
|
62
89
|
version: '0'
|
|
63
90
|
requirements: []
|
|
64
|
-
rubygems_version: 3.
|
|
65
|
-
signing_key:
|
|
91
|
+
rubygems_version: 3.6.9
|
|
66
92
|
specification_version: 4
|
|
67
93
|
summary: this is a gem that is used for testing purposes only - do not install it,
|
|
68
94
|
do not use it
|