souls 1.2.1 → 1.2.2
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: dfd94cb490b6572839d1bbe81210f365501d29746db52da19b7802a989389f78
|
|
4
|
+
data.tar.gz: ff24ba19313ef53a5b0be3650902963aa1035e86f26a44819431ec2c9a9290e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71400c705f4fef455e14adf98ac5f2ad51ff98ec751a6ee3ff0f08ad828d238d3383256464f7e9932035ac86dc7bfb10de756c2bb1dc90932ee812304d1bab73
|
|
7
|
+
data.tar.gz: 0c19435dad07d1e8f69213a52522d8f46c48140b415c3f420eb556a8448d003a70626132d4229a413d5518835bcf2e5c55ffe63a2cb510e2f2bc0d32987a42ec
|
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
module Souls
|
|
2
2
|
class Github < Thor
|
|
3
|
-
desc "auth_login", "gcloud config set and gcloud auth login"
|
|
4
|
-
def auth_login
|
|
5
|
-
system("gh auth login")
|
|
6
|
-
rescue Thor::Error => e
|
|
7
|
-
raise(Thor::Error, e)
|
|
8
|
-
end
|
|
9
|
-
|
|
10
3
|
desc "secret_set", "Github Secret Set by Github CLI"
|
|
11
4
|
def secret_set
|
|
12
5
|
require("#{Souls.get_api_path}/config/souls")
|
data/lib/souls/cli/init/index.rb
CHANGED
|
@@ -159,6 +159,7 @@ module Souls
|
|
|
159
159
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Procfile")
|
|
160
160
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Steepfile")
|
|
161
161
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/gitignore")
|
|
162
|
+
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/.env.production.sample")
|
|
162
163
|
system("cd #{app_name} && mv gitignore .gitignore")
|
|
163
164
|
system("cd #{app_name} && bundle")
|
|
164
165
|
system("cd #{app_name}/apps/api && bundle")
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.2
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.2
|