callee 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4994d32a49e23ce76d18e6e9dfd87566b3ad70be1b1159e8d8a7363674e193fb
4
- data.tar.gz: 8e639218eca652fc3f8404d0e0a7ccba9e19ba265c7511bf9ec5130bbd8072fc
3
+ metadata.gz: b7b5acd465a45dd124829ffbc1530c7f6c762b4a4bfd7c98dbb7f90fea57c861
4
+ data.tar.gz: 45c7a23a942c5213868c20155991da8b80d5290f2a148a56255f43d265de1f70
5
5
  SHA512:
6
- metadata.gz: 55c8ebaea344b413666c6e19857b40a1119c143f19ff35182bf0efd6cbcc058f0f01ba042f76545b436e0dadf9a0623f3ea0648fe52becb05308e8046295def8
7
- data.tar.gz: 7c6bf4836fd000a1588cccf0596a65c746acf609e525195f8efd51d8c90c701ce22304939cc0c9fb0a6c338e46eda034e258b628a5bb0290b65215351988813c
6
+ metadata.gz: 34e89951e1f0d964f67bf29b50ec257b9536a6fad0cf3acec46299c2e5acb614b5b40f14065856607160f15baf0c5ed20d9c9f2d3a15c62ec20237cc5430d3c6
7
+ data.tar.gz: 3f1fabbe17b727dcadfb8786d2dbeeee8216c5339ef8c719130f59c31d7f37ce6827c60097ada2cc68b8296f764d3f399a275bcfd2a71511bd43bd494ed98025
@@ -12,3 +12,6 @@ AllCops:
12
12
  - 'Gemfile'
13
13
  - 'tmp/**/*'
14
14
  - 'vendor/**/*'
15
+
16
+ Style/TrailingCommaInHashLiteral:
17
+ EnforcedStyleForMultiline: no_comma
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.2.1] - 2019-08-07
8
+
9
+ - `#call` method is now consistent with the way `Dry::Initializer` constructor accepts params and options.
10
+
7
11
  ## [0.1.3] - 2019-07-29
8
12
 
9
13
  - Implement `to_proc` method to support Ruby ampersand shorthand.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- callee (0.2.0)
4
+ callee (0.2.1)
5
5
  dry-initializer (>= 2.5, < 4.0)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module Callee
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: callee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Musayev