Sha256: c0a4ff377808dbe3af8debb13686bb86a98c6d4c31b6215c5378027e235feca5
Contents?: true
Size: 507 Bytes
Versions: 52
Compression:
Stored size: 507 Bytes
Contents
module Souls class Delete < Thor desc "mutation [CLASS_NAME]", "Delete GraphQL Mutation" def mutation(class_name) singularized_class_name = class_name.singularize file_path = "" Dir.chdir(Souls.get_api_path.to_s) do file_path = "./app/graphql/mutations/base/#{singularized_class_name}/" FileUtils.rm_rf(file_path) end puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) file_path end end end
Version data entries
52 entries across 52 versions & 1 rubygems