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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e3d7c7f12085b0fa2507bc25d1f288f06831a7b119862fa5fd18a210d4ab277
4
- data.tar.gz: ef6179a06519d994e7cf9bff98413e60172a99a5d09bb96e17365423a56445b7
3
+ metadata.gz: bcf23a4649551b3318e38f502556c9265fd833a47f60ab2af52a3af5c7cc893a
4
+ data.tar.gz: 6ad0aa6e8ba64ebb8bb3109e32f5ba3df7e73750098cb3eff1f4e6598ba9f71d
5
5
  SHA512:
6
- metadata.gz: e11eef9001e745ac4908230565d486d8db380ded6dbd60efdff554e909124dccd31c339a379ea5d74584f079fb12ded7e744fd743599bec1b7164b0ab475d339
7
- data.tar.gz: 3c64a79399532f382fed49e6872dc91218ccc9b52820ef4fd13baf795331b33bb753cafa7084e518620a751f16c4169ffbc7e011706d79ffbb319f88b87c2291
6
+ metadata.gz: bed3c773b742a8b77e33ce6c07a7eabbd3645079de7c52eccb40e5195b540aa6130dece51f2baa7dc9d0685fef96ae9d81545059ef9e4c1cedcf953d1d1a905b
7
+ data.tar.gz: 243dfe2833cc4da2c4e69619c02f314109a1397098eb084c076f2e5b5e0e58909eb5fa5c3b0941d122ea2f61e9abde7870c4f2cb49bb3aa6b7b8adb91a5cd6ba
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2021 dry-rb team
3
+ Copyright (c) 2015-2023 dry-rb team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
data/README.md CHANGED
@@ -1,29 +1,3 @@
1
- [gem]: https://rubygems.org/gems/dry-testing
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
- # dry-testing [![Join the chat at https://dry-rb.zulipchat.com](https://img.shields.io/badge/dry--rb-join%20chat-%23346b7a.svg)][chat]
8
-
9
- [![Gem Version](https://badge.fury.io/rb/dry-testing.svg)][gem]
10
- [![CI Status](https://github.com/dry-rb/dry-testing/workflows/ci/badge.svg)][actions]
11
- [![Codacy Badge](https://api.codacy.com/project/badge/Grade/codacy-id)][codacy]
12
- [![Codacy Badge](https://api.codacy.com/project/badge/Coverage/codacy-id)][codacy]
13
- [![Inline docs](http://inch-ci.org/github/dry-rb/dry-testing.svg?branch=master)][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
- lib = File.expand_path('lib', __dir__)
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 'dry/testing/version'
7
+ require "dry/testing/version"
7
8
 
8
9
  Gem::Specification.new do |spec|
9
- spec.name = 'dry-testing'
10
- spec.authors = ["Piotr Solnica"]
11
- spec.email = ["piotr.solnica@gmail.com"]
12
- spec.license = 'MIT'
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 = 'https://dry-rb.org/gems/dry-testing'
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 = 'bin'
20
+ spec.bindir = "bin"
20
21
  spec.executables = []
21
- spec.require_paths = ['lib']
22
+ spec.require_paths = ["lib"]
22
23
 
23
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
24
- spec.metadata['changelog_uri'] = 'https://github.com/dry-rb/dry-testing/blob/master/CHANGELOG.md'
25
- spec.metadata['source_code_uri'] = 'https://github.com/dry-rb/dry-testing'
26
- spec.metadata['bug_tracker_uri'] = 'https://github.com/dry-rb/dry-testing/issues'
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.5.0"
29
+ spec.required_ruby_version = ">= 2.7.0"
29
30
 
30
- # to update dependencies edit project.yml
31
- spec.add_development_dependency "rake", "~> 13.0"
31
+ spec.add_development_dependency "rake"
32
+ spec.add_development_dependency "rspec"
33
+ spec.add_development_dependency "yard"
32
34
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Dry
2
4
  module Testing
3
- VERSION = "1.1.2"
5
+ VERSION = "1.2.0"
4
6
  end
5
7
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dry
4
+ module Testing
5
+ # this is not a real gem it's just for testing
6
+ end
7
+ end
data/lib/dry-testing.rb CHANGED
@@ -1,5 +1,3 @@
1
- module Dry
2
- module Testing
3
- # this is not a real gem it's just for testing
4
- end
5
- end
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "dry/testing"
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.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - Piotr Solnica
8
- autorequire:
7
+ - Hanakai team
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2021-01-03 00:00:00.000000000 Z
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: '13.0'
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: '13.0'
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
- - piotr.solnica@gmail.com
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/master/CHANGELOG.md
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.5.0
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.1.4
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