souls 1.7.11 → 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
@@ -1,5 +1,6 @@
|
|
1
1
|
module Souls
|
2
2
|
class CLI < Thor
|
3
|
+
@bucket_url = "https://storage.googleapis.com/souls-bucket/boilerplates/#{::Souls::VERSION}"
|
3
4
|
desc "new [APP_NAME]", "Create SOULs APP"
|
4
5
|
def new(app_name)
|
5
6
|
if app_name.nil?
|
@@ -84,7 +85,7 @@ module Souls
|
|
84
85
|
|
85
86
|
def download_github_actions(app_name: "souls-app")
|
86
87
|
file_name = "github.tgz"
|
87
|
-
url = "
|
88
|
+
url = "#{@bucket_url}/github_actions/github.tgz"
|
88
89
|
system("curl -OL #{url}")
|
89
90
|
FileUtils.mkdir_p("#{app_name}/github")
|
90
91
|
system("tar -zxvf ./#{file_name} -C #{app_name}/")
|
@@ -153,16 +154,16 @@ module Souls
|
|
153
154
|
FileUtils.rm(file_name)
|
154
155
|
|
155
156
|
sig_name = "sig.tgz"
|
156
|
-
url = "
|
157
|
+
url = "#{@bucket_url}/sig/#{sig_name}"
|
157
158
|
system("curl -OL #{url}")
|
158
159
|
system("tar -zxvf ./#{sig_name} -C #{app_name}")
|
159
160
|
|
160
|
-
system("cd #{app_name} && curl -OL
|
161
|
+
system("cd #{app_name} && curl -OL #{@bucket_url}/.rubocop.yml")
|
161
162
|
get_latest_gem(app_name)
|
162
|
-
system("cd #{app_name} && curl -OL
|
163
|
-
system("cd #{app_name} && curl -OL
|
164
|
-
system("cd #{app_name} && curl -OL
|
165
|
-
system("cd #{app_name} && curl -OL
|
163
|
+
system("cd #{app_name} && curl -OL #{@bucket_url}/Procfile.dev")
|
164
|
+
system("cd #{app_name} && curl -OL #{@bucket_url}/Procfile")
|
165
|
+
system("cd #{app_name} && curl -OL #{@bucket_url}/Steepfile")
|
166
|
+
system("cd #{app_name} && curl -OL #{@bucket_url}/gitignore")
|
166
167
|
system("cd #{app_name} && mv gitignore .gitignore")
|
167
168
|
system("cd #{app_name} && bundle")
|
168
169
|
system("cd #{app_name}/apps/api && bundle")
|
@@ -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/index.rb
CHANGED
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,13 +1,13 @@
|
|
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
|
8
8
|
- KishiTheMechanic
|
9
9
|
- James Neve
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
13
|
date: 2021-11-15 00:00:00.000000000 Z
|
@@ -226,8 +226,8 @@ 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.
|
230
|
-
post_install_message:
|
229
|
+
changelog_uri: https://github.com/elsoul/souls/releases/tag/v1.7.15
|
230
|
+
post_install_message:
|
231
231
|
rdoc_options: []
|
232
232
|
require_paths:
|
233
233
|
- lib
|
@@ -243,7 +243,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
243
|
version: '0'
|
244
244
|
requirements: []
|
245
245
|
rubygems_version: 3.2.22
|
246
|
-
signing_key:
|
246
|
+
signing_key:
|
247
247
|
specification_version: 4
|
248
248
|
summary: Build Serverless Apps faster like Rails. Powered by Ruby GraphQL, RBS/Steep,
|
249
249
|
Active Record, RSpec, RuboCop, and Google Cloud.
|