Sha256: d3a04c805e7e986d73b32e5cdeb53cd0cb51bc3e51f0c8d425eb67c3c40bb767
Contents?: true
Size: 594 Bytes
Versions: 120
Compression:
Stored size: 594 Bytes
Contents
module Souls class Delete < Thor desc "mutation_rbs [CLASS_NAME]", "Delete GraphQL Mutation RBS" def mutation_rbs(class_name) singularized_class_name = class_name.underscore.singularize file_path = "" Dir.chdir(Souls.get_mother_path.to_s) do file_dir = "./sig/api/app/graphql/mutations/base/#{singularized_class_name}" FileUtils.rm_rf(file_dir) end puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) file_path rescue Thor::Error => e raise(Thor::Error, e) end end end
Version data entries
120 entries across 120 versions & 1 rubygems