interactor-initializer 0.2.0 → 0.3.0

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
- SHA1:
3
- metadata.gz: 3d2e2c03930bb06fbe39d7288d3c8905158755fd
4
- data.tar.gz: 12836a46c17a2a101adb49abfd096585aa1350f5
2
+ SHA256:
3
+ metadata.gz: e06145ba8fa2f77b62527e3490597f55ef5c2c6c25c821f99c0ad598747d6e7e
4
+ data.tar.gz: ba17eb8f4df48ee73857505af5a555172d5a798803a069107d339599134ee567
5
5
  SHA512:
6
- metadata.gz: f4c6eb6c26e8a6028e2624438d41b898c18675e4811bc9824c94d7ceb049a227945aeee09eccd0ff7b2060fd81694fdfb863dd4f4a57e695b6d9c84781a57b5b
7
- data.tar.gz: 0ff55deb63da6274083cf4f76d379c6070348cff2d0663d103adde4007e9506e75f79d3d4ef5fe3f68d2cb085decb62d6534954ce4050bb61106445914ab1a18
6
+ metadata.gz: 2c2a4da71c4be00fecda73b9f618d575444367550bdd855c33f365853381dd6f7eced459f074f3ccfa306222f7e5ef03dbb94b0dcb9762fe653f897f3b25d4e7
7
+ data.tar.gz: 928f7a9f6bf49e8e433ae10de20bc07822befb88755dbc494fd8391ea18025190169486e00fe5b04a1311b8715a89218aece308e7ada03c4f8f7b8fd94666d3d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Vinted
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, 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,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -8,9 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.platform = Gem::Platform::RUBY
9
9
  spec.version = Interactor::Initializer::VERSION
10
10
  spec.authors = ['Šarūnas Kūjalis']
11
- spec.email = ['sarjalis@gmail.com']
11
+ spec.email = ['admin@vinted.com']
12
12
  spec.summary = 'Dry interactor initializer'
13
13
  spec.homepage = 'https://github.com/vinted/interactor-initializer'
14
+ spec.license = 'MIT'
14
15
 
15
16
  spec.files = `git ls-files`.split($/)
16
17
  spec.test_files = `git ls-files -- {spec}/*`.split("\n")
@@ -1,6 +1,6 @@
1
1
  class Interactor::Initializer::Initialize
2
- def self.for(*args)
3
- new(*args).run
2
+ def self.for(*args, **kwargs)
3
+ new(*args, **kwargs).run
4
4
  end
5
5
 
6
6
  attr_reader :target_class, :attributes, :keyword_params
@@ -1,5 +1,5 @@
1
1
  module Interactor
2
2
  module Initializer
3
- VERSION = '0.2.0'.freeze
3
+ VERSION = '0.3.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: interactor-initializer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - "Šarūnas Kūjalis"
7
+ - Šarūnas Kūjalis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-14 00:00:00.000000000 Z
11
+ date: 2020-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '3.0'
55
55
  description:
56
56
  email:
57
- - sarjalis@gmail.com
57
+ - admin@vinted.com
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
@@ -64,6 +64,7 @@ files:
64
64
  - ".rubocop.yml"
65
65
  - ".travis.yml"
66
66
  - Gemfile
67
+ - LICENSE
67
68
  - README.md
68
69
  - Rakefile
69
70
  - interactor-initializer.gemspec
@@ -77,7 +78,8 @@ files:
77
78
  - spec/initializer/initialize_spec.rb
78
79
  - spec/spec_helper.rb
79
80
  homepage: https://github.com/vinted/interactor-initializer
80
- licenses: []
81
+ licenses:
82
+ - MIT
81
83
  metadata: {}
82
84
  post_install_message:
83
85
  rdoc_options: []
@@ -94,8 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
96
  - !ruby/object:Gem::Version
95
97
  version: '0'
96
98
  requirements: []
97
- rubyforge_project:
98
- rubygems_version: 2.4.5
99
+ rubygems_version: 3.0.3
99
100
  signing_key:
100
101
  specification_version: 4
101
102
  summary: Dry interactor initializer