souls 0.33.3 → 0.33.4

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: adf31a88940fff2ee709f3e6a65a8c0b380c8a98d2c219f15b3205020a90b272
4
- data.tar.gz: 4cb05c4da3e40a9d739d7225e18ecdf5b247883a45a6d62715ae7308b4dfea35
3
+ metadata.gz: 0d646bd85b172e8de520a7df064670d8097407fa85a07b5b3149480b15e497a9
4
+ data.tar.gz: 75b4ea6db4e92031a9e303c2c7cb0edb8f5c8e3f328db4ebc531d4cd965d2eb9
5
5
  SHA512:
6
- metadata.gz: de578128a64aa2c1785a7ef263485735ff34beb07c9da88728b437244f18771c48858603bbc3ef37bef2d35cc8e7a638a5862f95c482ae7ea61ca7b83a2c0176
7
- data.tar.gz: a6d3cb9080a7ec39750ba2035f889e99bd348a9e2b4db7507873ff5f9da44e15addf8662f29acdc2f693f200f42ba1d15bd10943b039718349e5a6ad61d44b0f
6
+ metadata.gz: 8d6fc03dba103a44c1d441866dec676c46595a63141c6ae6c241f4e6abd88a0aeadac26cca63ee96823e05add2ff148953cb32c0990df58477ce8d6563929b1d
7
+ data.tar.gz: 0e5649148bf8d07ff4636adc8f59745f8496244a99dc1ee65ed83b5e29b2a5aae18178c39283ee40fed5b0f22ff8c785f793640be25d919140d5c98f02211f6c
@@ -18,7 +18,6 @@ module Souls
18
18
  end
19
19
 
20
20
  def export_key_to_console
21
- github_repo = Souls.configuration.github_repo || "elsoul/souls"
22
21
  file_path = "config/keyfile.json"
23
22
  puts(Paint["======= below(ここから)=======", :cyan])
24
23
  text = []
@@ -28,9 +27,10 @@ module Souls
28
27
  end
29
28
  end
30
29
  key = text.join(",").gsub(/^,/, "").chomp!
30
+ github_repo = `git remote show origin -n | grep 'Fetch URL:' | awk '{print $3}'`.strip
31
31
  puts(Paint[key, :white])
32
32
  puts(Paint["======= above(ここまで)=======", :cyan])
33
- github_secret_url = "https://github.com/#{github_repo}/settings/secrets/actions"
33
+ github_secret_url = "#{github_repo}/settings/secrets/actions"
34
34
  souls_doc_url = "https://souls.elsoul.nl/docs/tutorial/zero-to-deploy/#43-github-シークレットキーの登録"
35
35
  txt1 = <<~TEXT
36
36
 
data/lib/souls/init.rb CHANGED
@@ -17,7 +17,7 @@ module Souls
17
17
  else
18
18
  "bash"
19
19
  end
20
- system("echo 'alias api=\'cd apps/api\'' >> ~/.#{rc}")
20
+ system("echo '\nalias api=\'cd apps/api\'' >> ~/.#{rc}")
21
21
  system("echo 'alias mother=\'...\'' >> ~/.#{rc}")
22
22
  system("echo 'alias worker=\'cd apps/worker\'' >> ~/.#{rc}")
23
23
  puts(Paint["run `source ~/.#{rc}` to reflect your .#{rc}", :yellow])
@@ -72,7 +72,6 @@ module Souls
72
72
  config.app = "#{app_name}"
73
73
  config.project_id = "#{app_name}"
74
74
  config.strain = "mother"
75
- config.github_repo = "elsoul/souls"
76
75
  config.fixed_gems = ["excluded_gem"]
77
76
  end
78
77
  TEXT
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.33.3".freeze
2
+ VERSION = "0.33.4".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.12.3
1
+ 0.12.4
@@ -1 +1 @@
1
- 0.12.3
1
+ 0.12.4
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: 0.33.3
4
+ version: 0.33.4
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-08-27 00:00:00.000000000 Z
@@ -157,7 +157,7 @@ metadata:
157
157
  homepage_uri: https://souls.elsoul.nl
158
158
  source_code_uri: https://github.com/elsoul/souls
159
159
  changelog_uri: https://github.com/elsoul/souls
160
- post_install_message:
160
+ post_install_message:
161
161
  rdoc_options: []
162
162
  require_paths:
163
163
  - lib
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  version: '0'
174
174
  requirements: []
175
175
  rubygems_version: 3.2.22
176
- signing_key:
176
+ signing_key:
177
177
  specification_version: 4
178
178
  summary: SOULs はサーバーレスフルスタックフレームワークです。柔軟な Ruby GraphQL API と Worker はルーティングの必要がありません。
179
179
  クラウド環境への自動デプロイ、CI/CD ワークフローを標準装備。開発者がビジネスロジックに集中し、楽しくコードが書けるような環境を目指しています。