rubypitaya 3.15.2 → 3.15.3
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f093bde26abc5e9b0894d992cf050046d7e4d429b8c4e46fdbc7617930a9af8
|
4
|
+
data.tar.gz: f2666269c4003901ece36e33e7b90971c2f07e00594e119c5f52cb6b1c331ab3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b71e9815ffb0e9e776618ec626ba747ba42bc2e2c138dcf101087bfc48894d44a0da6fee32751dade600454706b0ca29c95416f648b523bc08b02597335ea16d
|
7
|
+
data.tar.gz: 0f0c2db6a01632e1bc3fbfc93acee3108ac41e107beb5d532a79fb2d2255055bf5e08fc214777c82fae63d4aad314f6635d066c7d4926dfb28b769cf165a4bd0
|
@@ -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.
|
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.
|
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:
|
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
|
-
-
|
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
|
|
data/lib/rubypitaya/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2023-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pg
|