rubypitaya 3.7.0 → 3.8.0
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 +4 -4
- data/lib/rubypitaya/app-template/Gemfile +1 -1
- data/lib/rubypitaya/app-template/Gemfile.lock +2 -2
- data/lib/rubypitaya/app-template/setup/development/database +3 -0
- data/lib/rubypitaya/app-template/setup/development/main +4 -0
- data/lib/rubypitaya/app-template/setup/test/database +3 -0
- data/lib/rubypitaya/app-template/setup/test/main +4 -0
- data/lib/rubypitaya/version.rb +1 -1
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12a31604406460247ee5d2596f52358a59f6b60f3b2765f4262b78525004cbd5
|
|
4
|
+
data.tar.gz: 74b634075206caaddae86a7726e2f7fb0c5e6e7e5e1ce0c4a4c7e1f615d7a2e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 673c27cb2dfea753dc3d81e95b04424d838c533dafbd262730a7c82a278ad35c9355aaf17a72e2156e9919de1987d47dadfb6728e31958f6ff6d3343acf9f175
|
|
7
|
+
data.tar.gz: d5e2813b687030005f55ef15acdca2f06c2f22075be9fb0db54f05d50333a7fc92e8ef478fa350a6bdab4bc78c7e830e3d55896c3c821ba9e3f6283f3e71075f
|
|
@@ -99,7 +99,7 @@ GEM
|
|
|
99
99
|
rspec-support (~> 3.11.0)
|
|
100
100
|
rspec-support (3.11.0)
|
|
101
101
|
ruby2_keywords (0.0.5)
|
|
102
|
-
rubypitaya (3.
|
|
102
|
+
rubypitaya (3.8.0)
|
|
103
103
|
activerecord (= 7.0.2)
|
|
104
104
|
etcdv3 (= 0.11.5)
|
|
105
105
|
google-protobuf (= 3.19.4)
|
|
@@ -138,7 +138,7 @@ DEPENDENCIES
|
|
|
138
138
|
listen (= 3.7.1)
|
|
139
139
|
pry (= 0.14.1)
|
|
140
140
|
rspec (= 3.11.0)
|
|
141
|
-
rubypitaya (= 3.
|
|
141
|
+
rubypitaya (= 3.8.0)
|
|
142
142
|
sinatra-contrib (= 2.1.0)
|
|
143
143
|
|
|
144
144
|
BUNDLED WITH
|
data/lib/rubypitaya/version.rb
CHANGED
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.
|
|
4
|
+
version: 3.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luciano Prestes Cavalcanti
|
|
@@ -330,6 +330,10 @@ files:
|
|
|
330
330
|
- "./lib/rubypitaya/app-template/kubernetes/statefulset-postgres.yaml"
|
|
331
331
|
- "./lib/rubypitaya/app-template/kubernetes/statefulset-redis.yaml"
|
|
332
332
|
- "./lib/rubypitaya/app-template/plugins.yaml"
|
|
333
|
+
- "./lib/rubypitaya/app-template/setup/development/database"
|
|
334
|
+
- "./lib/rubypitaya/app-template/setup/development/main"
|
|
335
|
+
- "./lib/rubypitaya/app-template/setup/test/database"
|
|
336
|
+
- "./lib/rubypitaya/app-template/setup/test/main"
|
|
333
337
|
- "./lib/rubypitaya/app-template/spec/hello_world_handler_spec.rb"
|
|
334
338
|
- "./lib/rubypitaya/app-template/spec/player_handler_spec.rb"
|
|
335
339
|
- "./lib/rubypitaya/app-template/spec/redis_service_spec.rb"
|