souls 0.55.0 → 0.55.1
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: 73360700bdc37dfbecd749b27fc7130b74ab5e6b09964de3ef3a69b871ca3757
|
4
|
+
data.tar.gz: 7f541d2b5b3f2585e400870d8f10d9668c690823f06febfc82ecf993cf1b8e94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3fb45003722268317046bf1d2888f92f402e27a9320d61ec0466131f281364ce4ffc6408b17b9abffc1d1fb46e923193dfd6f3753137e8b30bb51dea632e809
|
7
|
+
data.tar.gz: 2dbe0bb5b0be9f0430f932d3b83b9cc8708c12bdcfed6d31095c88afa67f18f9f1c0bcfb4c812056f5182de6dbad3546dc48e456f3e7ce52818a080137d5581b
|
data/lib/souls/cli/init/index.rb
CHANGED
@@ -17,7 +17,7 @@ module Souls
|
|
17
17
|
end
|
18
18
|
|
19
19
|
desc "init", "Run git submodule add RBS collection"
|
20
|
-
def
|
20
|
+
def add_submodule
|
21
21
|
system("git submodule add https://github.com/ruby/gem_rbs_collection.git vendor/rbs/gem_rbs_collection")
|
22
22
|
end
|
23
23
|
|
@@ -84,7 +84,7 @@ module Souls
|
|
84
84
|
|
85
85
|
def download_github_actions(app_name: "souls-app")
|
86
86
|
file_name = "github.tgz"
|
87
|
-
url = "https://storage.googleapis.com/souls-bucket/boilerplates/github.tgz"
|
87
|
+
url = "https://storage.googleapis.com/souls-bucket/boilerplates/github_actions/github.tgz"
|
88
88
|
system("curl -OL #{url}")
|
89
89
|
FileUtils.mkdir_p("#{app_name}/github")
|
90
90
|
system("tar -zxvf ./#{file_name} -C #{app_name}/")
|
@@ -120,18 +120,19 @@ module Souls
|
|
120
120
|
system("curl -OL #{url}")
|
121
121
|
system("mkdir -p #{app_name}/apps/#{service_name}")
|
122
122
|
system("tar -zxvf ./#{file_name} -C #{app_name}/apps/")
|
123
|
+
FileUtils.rm(file_name)
|
123
124
|
|
124
|
-
|
125
|
-
url = "https://storage.googleapis.com/souls-bucket/boilerplates/sig/#{
|
125
|
+
sig_name = "sig.tgz"
|
126
|
+
url = "https://storage.googleapis.com/souls-bucket/boilerplates/sig/#{sig_name}"
|
126
127
|
system("curl -OL #{url}")
|
127
|
-
system("tar -zxvf ./#{
|
128
|
+
system("tar -zxvf ./#{sig_name} -C #{app_name}")
|
128
129
|
|
129
130
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/.rubocop.yml")
|
130
131
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Gemfile")
|
131
132
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Procfile.dev")
|
132
133
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Procfile")
|
133
134
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Steepfile")
|
134
|
-
FileUtils.rm(
|
135
|
+
FileUtils.rm(sig_name)
|
135
136
|
end
|
136
137
|
|
137
138
|
def souls_api_credit(app_name: "souls", service_name: "api")
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.34.
|
1
|
+
0.34.1
|
@@ -1 +1 @@
|
|
1
|
-
0.34.
|
1
|
+
0.34.1
|