souls 0.25.2 → 0.25.6
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/exe/souls +1 -0
- data/lib/souls.rb +1 -1
- data/lib/souls/init.rb +1 -1
- data/lib/souls/version.rb +1 -1
- data/lib/souls/versions/.souls_api_version +1 -1
- data/lib/souls/versions/.souls_worker_version +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be5bcefe806cbd1e4c8bc1ab799454bd721b8c73f477ca1464ea4470e074f1e9
|
4
|
+
data.tar.gz: '098151d1afa7977cdc6e40d94a0f17d94df41344c049026714107bf0e92eaf56'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b87697617500a30edb165939fce43d145e80629e3a79ce329fc07c72697d70638a7f7fa98c982cd378d5c6f423c890d9cdf717525e3e333c0b7cd1fa12db2e08
|
7
|
+
data.tar.gz: 44772472fc8a50085cde7df9aaccdfa75aa15429e2903ba270bc820f2f0abaf392ba132a03ad037afe8a603e436ab7f1ae4a7f6533a9cf3f34b6fb9eb0690590
|
data/exe/souls
CHANGED
data/lib/souls.rb
CHANGED
@@ -245,7 +245,7 @@ module Souls
|
|
245
245
|
when "gem"
|
246
246
|
return Souls::VERSION.split(".").map(&:to_i)
|
247
247
|
when "api", "worker", "console", "admin", "media"
|
248
|
-
file_path = "
|
248
|
+
file_path = "#{Gem.dir}/gems/souls-#{Souls::VERSION}/lib/souls/versions/.souls_#{service_name}_version"
|
249
249
|
else
|
250
250
|
raise(StandardError, "You are at wrong directory!")
|
251
251
|
end
|
data/lib/souls/init.rb
CHANGED
@@ -28,7 +28,7 @@ module Souls
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def self.download_souls(app_name: "souls", service_name: "api")
|
31
|
-
version = get_latest_version_txt(service_name: service_name).join(".")
|
31
|
+
version = Souls.get_latest_version_txt(service_name: service_name).join(".")
|
32
32
|
file_name = "#{service_name}-v#{version}.tgz"
|
33
33
|
url = "https://storage.googleapis.com/souls-bucket/boilerplates/#{service_name.pluralize}/#{file_name}"
|
34
34
|
system("curl -OL #{url}")
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.9
|
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.9
|