dry-testing 0.0.4 → 0.0.5

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: 1193c29642b59544dd78042532669f326009c0db9d8e1a4bdabed4353bec4eb3
4
- data.tar.gz: 0c8f15f1551f81180100d444e1760b475f542addcb60466c72afa1461b0c96b8
3
+ metadata.gz: 492e61e83d04c0d64b1edbf19b51f61e99e575711046aca8bc4a6acdacf669c7
4
+ data.tar.gz: 3d68b84462c6cdf60e1726e3ae513fddca169c59b825cfb1ca6577278a88809e
5
5
  SHA512:
6
- metadata.gz: 7d78fb752d5c87a2730ee57790f358d913c63e9977980cdd15d41c85d5b315056bcb3973c164b41b0652622cdad493ca99edad9132ddeabe8948e0c05ab977e1
7
- data.tar.gz: 1186fa02e9c79cb913c08c310ace14e76b120e18e5e677445008b37f8ad4f782930d894842cb83bd543f28429ef8393ff5d71feea11f445ac2e8708fa577578a
6
+ metadata.gz: 5fd2ad8ac8c8055c3568657f0c447842579e63a9e53a1aeccdb4a6d190d7e0fef14450b79789841a097da674d2ca69bdc2c01e61438ea75b17533b7f086624b8
7
+ data.tar.gz: cfc77422efee1748c38744af5d703b0d7c350dfc6522a88cba88ce402400fc51558991c6d6ea3f5a80f251a674d9c5ebc9fd9d3574d8ee2b2d77235e77e68809
data/CHANGELOG.md ADDED
@@ -0,0 +1,54 @@
1
+ ## 0.2.2 2020-01-15
2
+
3
+ How about another test?
4
+
5
+ ### Added
6
+
7
+ - test
8
+
9
+ ### Fixed
10
+
11
+ - all the things
12
+ - test
13
+ - Use GITHUB_SHA rather than GITHUB_REF when updating changelog
14
+ - Also, test it again
15
+
16
+ ### Changed
17
+
18
+ - test
19
+
20
+ [Compare v0.2.1...v0.2.2](https://github.com/dry-rb/dry-testing/compare/v0.2.1...v0.2.2)
21
+
22
+ ## 0.2.1 2020-01-10
23
+
24
+ One more test
25
+
26
+
27
+ [Compare v0.2.0...v0.2.1](https://github.com/dry-rb/dry-testing/compare/v0.2.0...v0.2.1)
28
+
29
+ ## 0.2.0 2020-01-05
30
+
31
+ Another test
32
+
33
+ ### Fixed
34
+
35
+ - just one thing
36
+
37
+
38
+ [Compare v0.1.0...v0.2.0](https://github.com/dry-rb/dry-testing/compare/v0.1.0...v0.2.0)
39
+
40
+ ## 0.1.0 2020-01-01
41
+
42
+ This is just a test
43
+
44
+ ### Added
45
+
46
+ - a whole bunch of features
47
+
48
+ ### Fixed
49
+
50
+ - a whole bunch of bugs
51
+
52
+ ### Changed
53
+
54
+ - totally everything
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015-2020 dry-rb team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1 +1,29 @@
1
- # THIS IS NOT A REAL GEM - IT IS ONLY FOR TESTING PURPOSES
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
6
+
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.4`
25
+ * jruby >= `9.2`
26
+
27
+ ## License
28
+
29
+ See `LICENSE` file.
@@ -0,0 +1,5 @@
1
+ module Dry
2
+ module Testing
3
+ VERSION = '0.0.5'
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Dry
2
+ module Testing
3
+ # this is not a real gem it's just for testing
4
+ end
5
+ end
metadata CHANGED
@@ -1,27 +1,36 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-19 00:00:00.000000000 Z
11
+ date: 2020-01-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description: this is a gem that is used for testing purposes only - do not install
14
+ it, do not use it
14
15
  email:
15
16
  - piotr.solnica@gmail.com
16
17
  executables: []
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
21
+ - CHANGELOG.md
22
+ - LICENSE
20
23
  - README.md
21
- homepage: https://github.com/dry-rb/testing
24
+ - lib/dry-testing.rb
25
+ - lib/dry/testing/version.rb
26
+ homepage: https://dry-rb.org/gems/dry-testing
22
27
  licenses:
23
28
  - MIT
24
- metadata: {}
29
+ metadata:
30
+ allowed_push_host: https://rubygems.org
31
+ changelog_uri: https://github.com/dry-rb/dry-testing/blob/master/CHANGELOG.md
32
+ source_code_uri: https://github.com/dry-rb/dry-testing
33
+ bug_tracker_uri: https://github.com/dry-rb/dry-testing/issues
25
34
  post_install_message:
26
35
  rdoc_options: []
27
36
  require_paths: