souls 1.7.14 → 1.7.15
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b9deff5a26d74292f2b5463137ff7b61e6f46b79022cec55958d1efe0607e76
|
|
4
|
+
data.tar.gz: bc602a9c2ce103980b5f63af3cd4bc3a0c0780a256bd50c61a03e5dd6ca62b8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ab2504f0ea7470ba08670254ee1f102656d291f9e20c04b81b14551f7179a47e34b87686aed36e17628f8d403bd78cde7fd176aedf1df797e3880b0b712f1fc
|
|
7
|
+
data.tar.gz: e4c7d4c8027618ec9a454e9c03f9970d8db2ce495f4ce500d0425b758e4687a2ff68a20dcd032ba998e3dcfc36a66ad84dd2180ca7650a0bdd74228ae78a5eb7
|
data/lib/souls/cli/init/index.rb
CHANGED
|
@@ -147,7 +147,7 @@ module Souls
|
|
|
147
147
|
def download_souls(app_name: "souls", service_name: "api")
|
|
148
148
|
version = Souls.get_latest_version_txt(service_name: service_name).join(".")
|
|
149
149
|
file_name = "#{service_name}-v#{version}.tgz"
|
|
150
|
-
url = "
|
|
150
|
+
url = "https://storage.googleapis.com/souls-bucket/boilerplates/#{service_name.pluralize}/#{file_name}"
|
|
151
151
|
system("curl -OL #{url}")
|
|
152
152
|
system("mkdir -p #{app_name}/apps/#{service_name}")
|
|
153
153
|
system("tar -zxvf ./#{file_name} -C #{app_name}/apps/")
|
|
@@ -38,6 +38,7 @@ module Souls
|
|
|
38
38
|
write_changelog(current_souls_ver: current_souls_ver)
|
|
39
39
|
system("gh release create v#{souls_new_ver} -t v#{souls_new_ver} -F ./CHANGELOG.md")
|
|
40
40
|
system("gsutil -m -q cp -r coverage gs://souls-bucket/souls-coverage")
|
|
41
|
+
Rake::Task["upload:init_files"].invoke
|
|
41
42
|
Whirly.status = Paint["soul-v#{souls_new_ver} successfully updated!"]
|
|
42
43
|
end
|
|
43
44
|
end
|
|
@@ -70,6 +71,7 @@ module Souls
|
|
|
70
71
|
|
|
71
72
|
overwrite_version(new_version: souls_local_ver)
|
|
72
73
|
system("gem build souls.gemspec --output #{local_dir}souls-#{souls_local_ver}.gem")
|
|
74
|
+
Rake::Task["upload:init_files"].invoke
|
|
73
75
|
Whirly.status = Paint["Done. Created gem at #{local_dir}souls-#{souls_local_ver}.gem"]
|
|
74
76
|
Whirly.status = Paint["Removing previous versions...", :white]
|
|
75
77
|
system("gem uninstall souls -x --force")
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.7.
|
|
1
|
+
1.7.15
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.7.
|
|
1
|
+
1.7.15
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: souls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- POPPIN-FUMI
|
|
@@ -226,7 +226,7 @@ licenses:
|
|
|
226
226
|
metadata:
|
|
227
227
|
homepage_uri: https://souls.elsoul.nl
|
|
228
228
|
source_code_uri: https://github.com/elsoul/souls
|
|
229
|
-
changelog_uri: https://github.com/elsoul/souls/releases/tag/v1.7.
|
|
229
|
+
changelog_uri: https://github.com/elsoul/souls/releases/tag/v1.7.15
|
|
230
230
|
post_install_message:
|
|
231
231
|
rdoc_options: []
|
|
232
232
|
require_paths:
|