hanami-utils 2.0.0.alpha2 → 2.0.0.alpha3

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: c8c15a181f268ff9117c181bfccc23c3fb63f31cbe38590f2d0b9f925e0fa9d1
4
- data.tar.gz: bfdcc4baf599cd58adeb870ef700d705ec4cc58fdb58377f0028db177b3c431d
3
+ metadata.gz: a34d2521940dfea9fb6d12a6cf65022aa340567e741801e3740d06e0e620d1f3
4
+ data.tar.gz: d7396f0786283c15a398e41a1c3b62659be3d786b2df295733bca55253cb7def
5
5
  SHA512:
6
- metadata.gz: 3099871c8e61b12217e0c9d5d2a5668daddcaf8d439190c2fb1a356a2b92d02859a1f258ba8b7517b3be8b3685664be1dd68676ecb7ae5f7f809e3a5371d1182
7
- data.tar.gz: 3a7b06f9f9c7eda2f716f9e0fc77a9e4a97f5a5e6e6137b7dd6eb1e77b4f57a48249a364ea6a35712753582de244bc81e7978ac4c95bde7b2d8c86566a07c3c5
6
+ metadata.gz: 15f71cb5b8f88f6bb0ac02dce471120115923d8dff3676a5ed12860bc743d7d20ce9e6ad8ef5a29e233f63dbe5299510757c0f25b25d75c6818e8e72d9f7407c
7
+ data.tar.gz: 85d58a5238393e7647a3b5dac295182619ae7f583c96d53c2928a8f79d3cee8cb0a5a7e306fc7e8705b884b76cb305e37e55afa3a9b9bb1122b049fb6776400a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Hanami::Utils
2
2
  Ruby core extentions and class utilities for Hanami
3
3
 
4
+ ## v2.0.0.alpha3 - 2021-11-09
5
+ No changes.
6
+
4
7
  ## v2.0.0.alpha2 - 2021-05-04
5
8
  ### Changed
6
9
  - [Luca Guidi] Drop support for Ruby: MRI 2.5.
@@ -205,7 +208,7 @@ Ruby core extentions and class utilities for Hanami
205
208
  - [Grachev Mikhail] Introduced `Hanami::Interactor::Result#failure?`
206
209
 
207
210
  ### Fixed
208
- - [Paweł Świątkowski] `Utils::Inflector.pluralize` Pluralize -en to -ens instead of -ina
211
+ - [Paweł Świątkowski] `Utils::Inflector.pluralize` Pluralize -en to -ens instead of -ina
209
212
 
210
213
  ### Changed
211
214
  - [Grachev Mikhail] Deprecate `Hanami::Interactor::Result#failing?` in favor of `#failure?`
@@ -225,7 +228,7 @@ Ruby core extentions and class utilities for Hanami
225
228
  ### Added
226
229
  – [Luca Guidi] Introduced `Utils.require!` to recursively require Ruby files with an order that is consistent across platforms
227
230
  – [Luca Guidi] Introduced `Utils::FileList` as cross-platform ordered list of files, alternative to `Dir.glob`
228
- - [Luca Guidi] Make `Utils::BasicObject` pretty printable
231
+ - [Luca Guidi] Make `Utils::BasicObject` pretty printable
229
232
  - [Grachev Mikhail] Added `Interactor::Result#successful?` and `#failing?`
230
233
 
231
234
  ### Fixed
@@ -429,7 +432,7 @@ Ruby core extentions and class utilities for Hanami
429
432
  ## v0.1.0 - 2014-01-23
430
433
  ### Added
431
434
  - [Luca Guidi] Introduced `Lotus::Utils::String#demodulize`
432
- - [Luca Guidi] Introduced `Lotus::Utils::IO.silence_warnings`
435
+ - [Luca Guidi] Introduced `Lotus::Utils::IO.silence_warnings`
433
436
  - [Luca Guidi] Introduced class loading mechanism from a string: `Utils::Class.load!`
434
437
  - [Luca Guidi] Introduced callbacks support for classes
435
438
  - [Luca Guidi] Introduced inheritable class level attributes
data/README.md CHANGED
@@ -5,11 +5,16 @@ Ruby core extensions and class utilities for [Hanami](http://hanamirb.org)
5
5
  ## Status
6
6
 
7
7
  [![Gem Version](https://badge.fury.io/rb/hanami-utils.svg)](https://badge.fury.io/rb/hanami-utils)
8
- [![CI](https://github.com/hanami/utils/workflows/ci/badge.svg?branch=unstable)](https://github.com/hanami/utils/actions?query=workflow%3Aci+branch%3Aunstable)
9
- [![Test Coverage](https://codecov.io/gh/hanami/utils/branch/unstable/graph/badge.svg)](https://codecov.io/gh/hanami/utils)
8
+ [![CI](https://github.com/hanami/utils/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/utils/actions?query=workflow%3Aci+branch%3Amain)
9
+ [![Test Coverage](https://codecov.io/gh/hanami/utils/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/utils)
10
10
  [![Depfu](https://badges.depfu.com/badges/a8545fb67cf32a2c75b6227bc0821027/overview.svg)](https://depfu.com/github/hanami/utils?project=Bundler)
11
11
  [![Inline Docs](http://inch-ci.org/github/hanami/utils.svg)](http://inch-ci.org/github/hanami/utils)
12
12
 
13
+
14
+ ## Version
15
+
16
+ **This branch contains the code for `hanami-utils` 2.x.**
17
+
13
18
  ## Contact
14
19
 
15
20
  * Home page: http://hanamirb.org
@@ -5,6 +5,6 @@ module Hanami
5
5
  # Defines the version
6
6
  #
7
7
  # @since 0.1.0
8
- VERSION = "2.0.0.alpha2"
8
+ VERSION = "2.0.0.alpha3"
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hanami-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha2
4
+ version: 2.0.0.alpha3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-04 00:00:00.000000000 Z
11
+ date: 2021-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-transformer
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: 1.3.1
160
160
  requirements: []
161
- rubygems_version: 3.2.4
161
+ rubygems_version: 3.2.3
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: Ruby core extentions and Hanami utilities