Sha256: af48b4b1382146c04768169d5100100ebb4e2733fb6fb0be9cb15fd87c25f779
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
module Souls module Init def self.get_version(repository_name: "souls_api") data = JSON.parse( `curl \ -H "Accept: application/vnd.github.v3+json" \ -s https://api.github.com/repos/elsoul/#{repository_name}/releases` ) data[0]["tag_name"] end def self.download_souls(app_name: "souls", repository_name: "souls_api ") version = get_version(repository_name: repository_name) system("curl -OL https://github.com/elsoul/#{repository_name}/archive/#{version}.tar.gz") system("tar -zxvf ./#{version}.tar.gz") system("mkdir #{app_name}") folder = version.delete("v") `cp -r #{repository_name}-#{folder}/. #{app_name}/` `rm -rf #{version}.tar.gz && rm -rf #{repository_name}-#{folder}` line = Paint["====================================", :yellow] puts("\n") puts(line) txt = <<~TEXT _____ ____ __ ____#{' '} / ___// __ \\/ / / / / _____ \\__ \\/ / / / / / / / / ___/ ___/ / /_/ / /_/ / /___(__ )#{' '} /____/\\____/\\____/_____/____/#{' '} TEXT message = Paint[txt, :cyan] puts(message) puts(line) welcome = Paint["Welcome to SOULs!", :white] puts(welcome) souls_ver = Paint["SOULs Version: #{Souls::VERSION}", :white] puts(souls_ver) puts(line) cd = Paint["Easy to Run\n$ cd #{app_name}\n$ bundle\n$ souls s\nGo To : http://localhost:3000\n\nDoc: https://souls.elsoul.nl", :white] puts(cd) puts(line) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
souls-0.24.3 | lib/souls/init.rb |
souls-0.24.2 | lib/souls/init.rb |