souls 0.55.0 → 0.55.1

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: 0ad38c68b295b0ea8e8a38aacb699eda93ade1fa9a584bc330140311cb7bcebb
4
- data.tar.gz: 2ea800b308b381440c04fdfc6399e36dd6615803b2f77f062be12c7ea04ce649
3
+ metadata.gz: 73360700bdc37dfbecd749b27fc7130b74ab5e6b09964de3ef3a69b871ca3757
4
+ data.tar.gz: 7f541d2b5b3f2585e400870d8f10d9668c690823f06febfc82ecf993cf1b8e94
5
5
  SHA512:
6
- metadata.gz: dbd8d2fa3df171f68a8e264d6f808719ed3776c775dd82294ec3b9a08331433e6986fbd6afda9ad78eef162d8e0dbb3b6b9ef9029fcc1eff4f9bd57060b06c9d
7
- data.tar.gz: c2f0a77950efb263a328a9df611d61e697b84434882aa4c33abeba35274f1a6f638510fe67aedf5d6e9d4fbc0d6686a08252e664ca45a27fdea357d1754f427a
6
+ metadata.gz: f3fb45003722268317046bf1d2888f92f402e27a9320d61ec0466131f281364ce4ffc6408b17b9abffc1d1fb46e923193dfd6f3753137e8b30bb51dea632e809
7
+ data.tar.gz: 2dbe0bb5b0be9f0430f932d3b83b9cc8708c12bdcfed6d31095c88afa67f18f9f1c0bcfb4c812056f5182de6dbad3546dc48e456f3e7ce52818a080137d5581b
@@ -17,7 +17,7 @@ module Souls
17
17
  end
18
18
 
19
19
  desc "init", "Run git submodule add RBS collection"
20
- def init
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
- file_name = "sig.tgz"
125
- url = "https://storage.googleapis.com/souls-bucket/boilerplates/sig/#{file_name}"
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 ./#{file_name} -C #{app_name}")
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(file_name)
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,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.55.0".freeze
2
+ VERSION = "0.55.1".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.34.0
1
+ 0.34.1
@@ -1 +1 @@
1
- 0.34.0
1
+ 0.34.1
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: 0.55.0
4
+ version: 0.55.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI