rubypitaya 3.15.2 → 3.15.3

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: 515d2b2bbf22dbf2090c4db926918d4c579255f5223baf55850e08d31b0f2954
4
- data.tar.gz: fad8a9bb65f7160344f855efd8ba9cdfd8ec71814f1c052730348c3660f2c1f4
3
+ metadata.gz: 9f093bde26abc5e9b0894d992cf050046d7e4d429b8c4e46fdbc7617930a9af8
4
+ data.tar.gz: f2666269c4003901ece36e33e7b90971c2f07e00594e119c5f52cb6b1c331ab3
5
5
  SHA512:
6
- metadata.gz: f0f103d1d8492e5d21a8183501ecb35f0432e7b460b22e0a17a5aec8990ec09417676e75c857c722c731bfbdc5b13218e0c37d7bf67d2bea204f44c88030ef67
7
- data.tar.gz: c9ba2c77aa89d21f443ad6ac4d6772bf2efc2117f1bce9eb8b195fda90dc8c628bc0c913807599dce0e759c54a3489885d1a62e6f6da4629719ceab2da6f132b
6
+ metadata.gz: b71e9815ffb0e9e776618ec626ba747ba42bc2e2c138dcf101087bfc48894d44a0da6fee32751dade600454706b0ca29c95416f648b523bc08b02597335ea16d
7
+ data.tar.gz: 0f0c2db6a01632e1bc3fbfc93acee3108ac41e107beb5d532a79fb2d2255055bf5e08fc214777c82fae63d4aad314f6635d066c7d4926dfb28b769cf165a4bd0
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '3.15.2'
3
+ gem 'rubypitaya', '3.15.3'
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.2)
97
+ rubypitaya (3.15.3)
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.2)
135
+ rubypitaya (= 3.15.3)
136
136
  sinatra-contrib (= 3.0.5)
137
137
 
138
138
  BUNDLED WITH
@@ -6,10 +6,12 @@ services:
6
6
  - '4222:4222'
7
7
 
8
8
  etcd:
9
- image: 'appcelerator/etcd:3.3.3'
9
+ image: quay.io/coreos/etcd:v3.5.5
10
+ environment:
11
+ - ETCD_ADVERTISE_CLIENT_URLS=http://localhost:2379
12
+ - ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379
10
13
  ports:
11
- - '2379:2379'
12
- - '2380:2380'
14
+ - 2379:2379
13
15
 
14
16
  redis:
15
17
  image: 'redis:6.0.5-alpine'
@@ -65,7 +67,7 @@ services:
65
67
  rubypitaya-console:
66
68
  <<: *rubypitaya
67
69
  ports: []
68
-
70
+
69
71
  rubypitaya-commands:
70
72
  <<: *rubypitaya
71
73
  depends_on:
@@ -46,7 +46,7 @@ module RubyPitaya
46
46
  def load_config_file(configs_folder_path, file_path)
47
47
  config_text = File.open(file_path, &:read)
48
48
  config_hash = JSON.parse(config_text, symbolize_names: true)
49
- config_hash.extend(ConfigHashExtension)
49
+ config_hash.extend(ConfigHashExtension) if config_hash.is_a?(Hash)
50
50
 
51
51
  file_name = file_path.sub(/^#{configs_folder_path}/, '')[0..-6]
52
52
 
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = '3.15.2'
2
+ VERSION = '3.15.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypitaya
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.15.2
4
+ version: 3.15.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Prestes Cavalcanti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-22 00:00:00.000000000 Z
11
+ date: 2023-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg