Sha256: f9e2d7a55e3d237fbbac98a0bda22cfe0f3b1b569082dd27d9e9fbaa480ef622
Contents?: true
Size: 567 Bytes
Versions: 49
Compression:
Stored size: 567 Bytes
Contents
module Souls class Delete < Thor desc "query_rbs [CLASS_NAME]", "Delete GraphQL Query RBS" def query_rbs(class_name) file_path = "" Dir.chdir(Souls.get_mother_path.to_s) do file_dir = "./sig/api/app/graphql/queries/" singularized_class_name = class_name.underscore.singularize file_path = "#{file_dir}#{singularized_class_name}*.rbs" FileUtils.rm_f(file_path) puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) file_path end end end end
Version data entries
49 entries across 49 versions & 1 rubygems