souls 0.25.20 → 0.25.21

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: 66e0b6654b29ea6a361da6bece2be252de22550bb07c844ad7790fcd548a2ff5
4
- data.tar.gz: e29b9acf01284142e562e8889743fd696fcf56600aed6c116c7bdb9aa4f3e7d2
3
+ metadata.gz: d302739333f55f0b68fb0c8a8fa5f35c9554835ef2ac2450d1cdb5f5e471d744
4
+ data.tar.gz: 9bb8ffc40893c6df1c9c3ef96bb66be49e8d6172f1cd553f852e7b8667ac7f62
5
5
  SHA512:
6
- metadata.gz: cfd541e08f629d71834914a18ee30c87bf1b25464897e4f6d8b82130d5fcedfbcab9b9ac972f693ee8f0c355b168b097289e82d3bd16bfd79606e529a6532b71
7
- data.tar.gz: abd69b5e9843eb059268d584830ba7892a583566791f4f77537473df3c5c156cf1c5c345ed625e9f639f1c6c24978f0094be6eb03b301ec7c855c24fd2d2142c
6
+ metadata.gz: a7d433ecd0936e89f176a2f78b2fa8a93ec450c3a002e24c168f1f733285bfa2dcec9a4f97d6ec774b096f7ff86f9a815b2691d1a533743a7e6c2046e05b0f8e
7
+ data.tar.gz: 21a103c93a45cc00e8910d11b0dc2e6163e9fa6112b809d5a7344941012f6fea730fbbeb482fa9851cf238848819c1f2831f41424e29a09ff4cb826f061808ec
data/exe/souls CHANGED
@@ -106,7 +106,7 @@ begin
106
106
  when "g", "generate"
107
107
  args = ARGV
108
108
  status = Paint["Generating Files...", :yellow]
109
- done = Paint["Generated SOULs CRUD Files☻", :yellow]
109
+ done = Paint["You're All Set ☻", :yellow]
110
110
  Whirly.start(spinner: "clock", interval: 420, stop: "🎉") do
111
111
  Whirly.status = status
112
112
  Souls::Generate.return_method(args)
data/lib/souls/init.rb CHANGED
@@ -107,7 +107,7 @@ module Souls
107
107
  puts(line)
108
108
  endroll = <<~TEXT
109
109
  Easy to Run
110
- $ cd #{app_name}/app/#{service_name}
110
+ $ cd #{app_name}/apps/#{service_name}
111
111
  $ bundle
112
112
  $ souls s
113
113
  Go To : http://localhost:4000
@@ -120,12 +120,13 @@ module Souls
120
120
  end
121
121
 
122
122
  def self.download_worker
123
+ current_dir_name = FileUtils.pwd.to_s.match(%r{/([^/]+)/?$})[1]
123
124
  version = Souls.get_latest_version_txt(service_name: "worker").join(".")
124
125
  file_name = "worker-v#{version}.tgz"
125
126
  url = "https://storage.googleapis.com/souls-bucket/boilerplates/workers/#{file_name}"
126
127
  system("curl -OL #{url}")
127
128
  system("mkdir -p ./apps/worker")
128
- system("tar -zxvf ./#{file_name} -C ./apps/worker")
129
+ system("tar -zxvf ./#{file_name} -C ./apps/")
129
130
  FileUtils.rm(file_name)
130
131
  line = Paint["====================================", :yellow]
131
132
  puts("\n")
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.25.20".freeze
2
+ VERSION = "0.25.21".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.4.23
1
+ 0.4.24
@@ -1 +1 @@
1
- 0.4.23
1
+ 0.4.24
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.25.20
4
+ version: 0.25.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI