rubypitaya 3.15.0 → 3.15.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
  SHA256:
3
- metadata.gz: 8cbe5d3feb8670d5bf12a7fa24a1c825c05eaad6fb2f1c4146bc578098e1f85a
4
- data.tar.gz: bb46b49c67003ce15aaa6d56e945b8fb8c4e86b14ff587dacea6bcce55e0ed31
3
+ metadata.gz: 515d2b2bbf22dbf2090c4db926918d4c579255f5223baf55850e08d31b0f2954
4
+ data.tar.gz: fad8a9bb65f7160344f855efd8ba9cdfd8ec71814f1c052730348c3660f2c1f4
5
5
  SHA512:
6
- metadata.gz: dacc15e4ff35c2697bcaf13636e5be9a61603c86c0ff9be9e53355eaf1b91266d9105ad1ee5dd7ffdfba057abb5e0670b304ca2cc34ecf7509aaae62112ac761
7
- data.tar.gz: c9fdd57684fb5cfc34847aa41872d4df02e1bb67eac3d6220433c23ac1d8623bcdd4851cdd70dcb5c18f0c255e710d0266b56ab570bb34928eedc59029a9701c
6
+ metadata.gz: f0f103d1d8492e5d21a8183501ecb35f0432e7b460b22e0a17a5aec8990ec09417676e75c857c722c731bfbdc5b13218e0c37d7bf67d2bea204f44c88030ef67
7
+ data.tar.gz: c9ba2c77aa89d21f443ad6ac4d6772bf2efc2117f1bce9eb8b195fda90dc8c628bc0c913807599dce0e759c54a3489885d1a62e6f6da4629719ceab2da6f132b
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '3.15.0'
3
+ gem 'rubypitaya', '3.15.2'
4
4
 
5
5
  group :development do
6
6
  gem 'pry', '0.14.2'
@@ -94,7 +94,7 @@ GEM
94
94
  rspec-support (~> 3.12.0)
95
95
  rspec-support (3.12.0)
96
96
  ruby2_keywords (0.0.5)
97
- rubypitaya (3.15.0)
97
+ rubypitaya (3.15.2)
98
98
  activerecord (= 7.0.4)
99
99
  etcdv3 (= 0.11.5)
100
100
  google-protobuf (= 3.21.12)
@@ -132,7 +132,7 @@ DEPENDENCIES
132
132
  listen (= 3.8.0)
133
133
  pry (= 0.14.2)
134
134
  rspec (= 3.12.0)
135
- rubypitaya (= 3.15.0)
135
+ rubypitaya (= 3.15.2)
136
136
  sinatra-contrib (= 3.0.5)
137
137
 
138
138
  BUNDLED WITH
@@ -1,4 +1,5 @@
1
1
  require 'rubypitaya/core/config_core'
2
+ require 'rubypitaya/core/config_hash_extension'
2
3
 
3
4
  module RubyPitaya
4
5
 
@@ -1,3 +1,5 @@
1
+ require 'rubypitaya/core/config_hash_extension'
2
+
1
3
  module RubyPitaya
2
4
 
3
5
  class ConfigCore
@@ -13,5 +13,13 @@ module RubyPitaya
13
13
  def dig(*args)
14
14
  super(*args.map(&:to_sym))
15
15
  end
16
+
17
+ def key?(key)
18
+ super(key.to_sym)
19
+ end
20
+
21
+ def has_key?(key)
22
+ super(key.to_sym)
23
+ end
16
24
  end
17
25
  end
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = '3.15.0'
2
+ VERSION = '3.15.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypitaya
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.15.0
4
+ version: 3.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Prestes Cavalcanti