dry-core 0.2.4 → 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
2
  SHA1:
3
- metadata.gz: cdac6ce2a9831f64dd76d54abe8a49a1e3fc7b0f
4
- data.tar.gz: cfbfa541b66c70f49dabea1dbebb699fb846d3c5
3
+ metadata.gz: 0d90cf172d8f4876fd72b7f471763252a96841ed
4
+ data.tar.gz: 9470c4d45a7d5c37401edef71add0927d43dc2d6
5
5
  SHA512:
6
- metadata.gz: c699046b2088d1c079409fe95b3bdfcee2cde0f515e09b986cf0c762557caffae1e5e21013a16d63ba1863153ba875271a90031a13d58d1646d44d8b24354129
7
- data.tar.gz: 7b6f4d3e999ef48027cc60d3fec8d93fb54c7fad23945b095a1499722258057f99ca146b168b5cfa30cda6cb1435314637cc3177f9c0e73f04b2cb4544e5d1e9
6
+ metadata.gz: f104b7b4ef55aeb2402e60862300c52fa8095711774f6b6a84c3932c6340a1c6ac10068f4b8d56207e48b24069f074a6ded3e432644d3368bbc9fdb761a5ab98
7
+ data.tar.gz: 99364cefdb3d5b6a7b99de4f657831cd77e38157eceba1289eb7264cc189279d8744ffb57fbc724307fc600d168006c356169376d7525467dd0d26d7e8f5415e
data/.travis.yml CHANGED
@@ -8,11 +8,11 @@ after_success:
8
8
  script:
9
9
  - bundle exec rake
10
10
  rvm:
11
- - 2.1
12
- - 2.2
13
- - 2.3
14
- - 2.4.0
15
- - jruby-9.1.5.0
11
+ - 2.1.10
12
+ - 2.2.6
13
+ - 2.3.3
14
+ - 2.4.1
15
+ - jruby-9.1.8.0
16
16
  - rbx-3
17
17
  env:
18
18
  global:
data/dry-core.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'A toolset of small support modules used throughout the dry-rb ecosystem.'
12
12
  spec.description = spec.summary
13
- spec.homepage = 'https://github.com/dry-rb/dry-code'
13
+ spec.homepage = 'https://github.com/dry-rb/dry-core'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
@@ -48,8 +48,9 @@ module Dry
48
48
  end
49
49
 
50
50
  define_method(:inherited) do |klass|
51
- super(klass)
52
51
  args.each { |name| klass.public_send(name, send(name)) }
52
+
53
+ super(klass)
53
54
  end
54
55
  end
55
56
 
@@ -1,5 +1,5 @@
1
1
  module Dry
2
2
  module Core
3
- VERSION = '0.2.4'.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: dry-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikita Shilnikov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-26 00:00:00.000000000 Z
11
+ date: 2017-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -94,7 +94,7 @@ files:
94
94
  - lib/dry/core/extensions.rb
95
95
  - lib/dry/core/inflector.rb
96
96
  - lib/dry/core/version.rb
97
- homepage: https://github.com/dry-rb/dry-code
97
+ homepage: https://github.com/dry-rb/dry-core
98
98
  licenses:
99
99
  - MIT
100
100
  metadata:
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  version: '0'
116
116
  requirements: []
117
117
  rubyforge_project:
118
- rubygems_version: 2.6.8
118
+ rubygems_version: 2.6.11
119
119
  signing_key:
120
120
  specification_version: 4
121
121
  summary: A toolset of small support modules used throughout the dry-rb ecosystem.