Sha256: bb6eae6c3178488a6e6e0176690596010717b9806e02a004f881931c3aea84a4
Contents?: true
Size: 1.09 KB
Versions: 79
Compression:
Stored size: 1.09 KB
Contents
module Souls class Generate < Thor desc "job_rbs [CLASS_NAME]", "Generate SOULs Job Mutation RBS Template" def job_rbs(class_name) file_path = "" worker_name = FileUtils.pwd.split("/").last Dir.chdir(Souls.get_mother_path.to_s) do singularized_class_name = class_name.underscore.singularize file_dir = "./sig/#{worker_name}/app/graphql/mutations/" FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir) file_path = "#{file_dir}#{singularized_class_name}.rbs" File.open(file_path, "w") do |f| f.write(<<~TEXT) module Mutations String: String class #{singularized_class_name.camelize} < BaseMutation def self.description: (String) -> untyped def self.field: (:response, String, null: false) -> untyped end end TEXT end puts(Paint % ["Created file! : %{white_text}", :green, { white_text: [file_path.to_s, :white] }]) end file_path rescue Thor::Error => e raise(Thor::Error, e) end end end
Version data entries
79 entries across 79 versions & 1 rubygems