dry-testing 0.0.7 → 1.0.2

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: ea1a9100d7cedce4fb7dfbe414c77a52a62596e35c10ac8d02725f6e009b08a7
4
- data.tar.gz: ad7442a968cea86f040a4f279693bbfe15b5e14a079795057d88f3891596daf3
3
+ metadata.gz: f75b8e07ad10a9b901647562682e0b173d5e93a8a5e586253ec95886cc1ab531
4
+ data.tar.gz: 85f64f8a3061ff794db914bb9a69bb587bbedb0c1dfdb8c8bb6e9abd95edf8b8
5
5
  SHA512:
6
- metadata.gz: 4ebac063ebfa020632f94756aa6d6d29bc06a38c1871af0d280ba9282a0224db5cea4b1f3723caacee48f2aa5e4220779fa1405709ec921c6334770a542c82f9
7
- data.tar.gz: 175698d95accc8250926c66264434fb9af5ed053772db4d8874b9c35cc14ba54c77d407d77b39c648bd9743f8a999733bad33608a2f1b6c18941b90534ab262b
6
+ metadata.gz: 13382d2dac517d864c2f30676b6cb7a8b3b6bd93c1573314101aa8d04d02c2c78f9bb81eac301187a6b8c4f691955968000e913b6e0c1f15ef7c27c03e651d2a
7
+ data.tar.gz: 2e113c6b8b5bb1d796429aea9a51d29228964c2bac6ae777ecc243d3b90fcb434e9dff38f9801481bdfa39bf0d6a23e148a9fea93ec83e858ab86a7ce5f47bcc
@@ -1,3 +1,37 @@
1
+ <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
+
3
+ ## 1.0.1 2020-02-10
4
+
5
+
6
+ ### Fixed
7
+
8
+ - all the things
9
+
10
+
11
+ [Compare v1.0.0...v1.0.1](https://github.com/dry-rb/dry-testing/compare/v1.0.0...v1.0.1)
12
+
13
+ ## 1.0.0 2020-01-22
14
+
15
+ let's release it
16
+
17
+ ### Added
18
+
19
+ - All the features
20
+
21
+
22
+ [Compare v1.0.0...v1.0.0](https://github.com/dry-rb/dry-testing/compare/v1.0.0...v1.0.0)
23
+
24
+ ## 1.0.0 2020-01-22
25
+
26
+ let's release it
27
+
28
+ ### Added
29
+
30
+ - All the features
31
+
32
+
33
+ [Compare v0.2.2...v1.0.0](https://github.com/dry-rb/dry-testing/compare/v0.2.2...v1.0.0)
34
+
1
35
  ## 0.2.2 2020-01-15
2
36
 
3
37
  How about another test?
@@ -23,6 +57,10 @@ How about another test?
23
57
 
24
58
  One more test
25
59
 
60
+ ### Fixed
61
+
62
+ - just testing
63
+
26
64
 
27
65
  [Compare v0.2.0...v0.2.1](https://github.com/dry-rb/dry-testing/compare/v0.2.0...v0.2.1)
28
66
 
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2020 dry-rb team
3
+ Copyright (c) 2015-2021 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
@@ -21,7 +21,7 @@
21
21
 
22
22
  This library officially supports the following Ruby versions:
23
23
 
24
- * MRI >= `2.4`
24
+ * MRI >= `2.5`
25
25
  * jruby >= `9.2`
26
26
 
27
27
  ## License
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+ # this file is managed by dry-rb/devtools project
3
+
4
+ lib = File.expand_path('lib', __dir__)
5
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
+ require 'dry/testing/version'
7
+
8
+ 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'
13
+ spec.version = Dry::Testing::VERSION.dup
14
+
15
+ spec.summary = "this is a gem that is used for testing purposes only - do not install it, do not use it"
16
+ spec.description = spec.summary
17
+ spec.homepage = 'https://dry-rb.org/gems/dry-testing'
18
+ spec.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-testing.gemspec", "lib/**/*"]
19
+ spec.bindir = 'bin'
20
+ spec.executables = []
21
+ spec.require_paths = ['lib']
22
+
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'
27
+
28
+ spec.required_ruby_version = ">= 2.5.0"
29
+
30
+ # to update dependencies edit project.yml
31
+ spec.add_development_dependency "rake", "~> 13.0"
32
+ end
@@ -1,5 +1,5 @@
1
1
  module Dry
2
2
  module Testing
3
- VERSION = '0.0.7'
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 1.0.2
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-21 00:00:00.000000000 Z
11
+ date: 2021-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -35,6 +35,7 @@ files:
35
35
  - CHANGELOG.md
36
36
  - LICENSE
37
37
  - README.md
38
+ - dry-testing.gemspec
38
39
  - lib/dry-testing.rb
39
40
  - lib/dry/testing/version.rb
40
41
  homepage: https://dry-rb.org/gems/dry-testing
@@ -53,14 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
54
  requirements:
54
55
  - - ">="
55
56
  - !ruby/object:Gem::Version
56
- version: 2.4.0
57
+ version: 2.5.0
57
58
  required_rubygems_version: !ruby/object:Gem::Requirement
58
59
  requirements:
59
60
  - - ">="
60
61
  - !ruby/object:Gem::Version
61
62
  version: '0'
62
63
  requirements: []
63
- rubygems_version: 3.0.3
64
+ rubygems_version: 3.1.4
64
65
  signing_key:
65
66
  specification_version: 4
66
67
  summary: this is a gem that is used for testing purposes only - do not install it,