dry-core 0.4.1 → 0.4.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
  SHA1:
3
- metadata.gz: 6d16ed519d450263269a0b138f5f687e02632137
4
- data.tar.gz: 5908543ec0bedb6a3a10662d20745471094ce47b
3
+ metadata.gz: 1bb0fe21e198b946d0363a8a082f3c860605eb38
4
+ data.tar.gz: d08019514eabec7e537e2a01138378295a62a75e
5
5
  SHA512:
6
- metadata.gz: ea7bcbce1621103c644229a644423c833b3ed09c281644eacece3de9623555bbfce89a2662c55c667d8be70889c9cb598456c7832879ae64b4af5d56360afc3d
7
- data.tar.gz: 782d803b352387825005a0ebecddb1a3570b0ee2a40f1fbe63a7c63da10e8eafa2362256defadf1445a015b6197e3d02d0855365205207851a4b3e1d1c3af29b
6
+ metadata.gz: 68b16b0ce816c94c9187d3721933aad533d5d8450c742b5e3659cdfc5dc77d6a63d3ae56f67c2278a3403382bace6af3396aefcb77f5f2a06053d3c16efb1d94
7
+ data.tar.gz: 5d97a6f64702926e66aba7bf4d1727f143997cce3054d4c58f35890a4e344265e4f37492f6cc56aec80685bdefce9a4fd6a1bc8e3c802fbec6feaad76e99d90a
@@ -1,3 +1,11 @@
1
+ # v0.4.2 2017-12-16
2
+
3
+ ### Fixed
4
+
5
+ * Class attributes now support private setters/getters (flash-gordon)
6
+
7
+ [Compare v0.4.1...v0.4.2](https://github.com/dry-rb/dry-core/compare/v0.4.1...v0.4.2)
8
+
1
9
  # v0.4.1 2017-11-04
2
10
 
3
11
  ### Changed
@@ -6,11 +6,11 @@ If you found a bug, report an issue and describe what's the expected behavior ve
6
6
 
7
7
  ## Reporting feature requests
8
8
 
9
- Report a feature request **only after discussing it first on [discuss.dry-rb.org](https://discuss.dry-rb.org)** where it was accepted. Please provide a concise description of the feature, don't link to a discussion thread, and instead summarize what was discussed.
9
+ Report a feature request **only after discourseing it first on [discourse.dry-rb.org](https://discourse.dry-rb.org)** where it was accepted. Please provide a concise description of the feature, don't link to a discourseion thread, and instead summarize what was discourseed.
10
10
 
11
11
  ## Reporting questions, support requests, ideas, concerns etc.
12
12
 
13
- **PLEASE DON'T** - use [discuss.dry-rb.org](http://discuss.dry-rb.org) instead.
13
+ **PLEASE DON'T** - use [discourse.dry-rb.org](https://discourse.dry-rb.org) instead.
14
14
 
15
15
  # Pull Request Guidelines
16
16
 
@@ -26,4 +26,4 @@ Other requirements:
26
26
 
27
27
  # Asking for help
28
28
 
29
- If these guidelines aren't helpful, and you're stuck, please post a message on [discuss.dry-rb.org](https://discuss.dry-rb.org).
29
+ If these guidelines aren't helpful, and you're stuck, please post a message on [discourse.dry-rb.org](https://discourse.dry-rb.org).
data/Gemfile CHANGED
@@ -12,9 +12,11 @@ group :test do
12
12
  gem 'codeclimate-test-reporter', require: false
13
13
  gem 'simplecov', require: false
14
14
  gem 'dry-types'
15
+ gem 'dry-inflector', git: 'https://github.com/dry-rb/dry-inflector', branch: 'master'
15
16
  end
16
17
 
17
18
  group :tools do
18
- gem 'byebug', platform: :mri
19
+ gem 'pry-byebug', platform: :mri
20
+ gem 'pry', platform: :jruby
19
21
  gem 'rubocop'
20
22
  end
@@ -70,7 +70,7 @@ module Dry
70
70
  end
71
71
 
72
72
  define_method(:inherited) do |klass|
73
- args.each { |name| klass.public_send(name, send(name)) }
73
+ args.each { |name| klass.send(name, send(name)) }
74
74
 
75
75
  super(klass)
76
76
  end
@@ -8,6 +8,10 @@ module Dry
8
8
  'active_support/inflector',
9
9
  proc { ::ActiveSupport::Inflector }
10
10
  ],
11
+ dry_inflector: [
12
+ 'dry/inflector',
13
+ proc { Dry::Inflector.new }
14
+ ],
11
15
  inflecto: [
12
16
  'inflecto',
13
17
  proc { ::Inflecto }
@@ -1,5 +1,5 @@
1
1
  module Dry
2
2
  module Core
3
- VERSION = '0.4.1'.freeze
3
+ VERSION = '0.4.2'.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.4.1
4
+ version: 0.4.2
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-11-04 00:00:00.000000000 Z
11
+ date: 2017-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: '0'
118
118
  requirements: []
119
119
  rubyforge_project:
120
- rubygems_version: 2.6.11
120
+ rubygems_version: 2.6.14
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: A toolset of small support modules used throughout the dry-rb ecosystem.