Sha256: c0528119f5b0866a2e6a701b525cd70b6e7976f8bffa9cc0e07c5e1ba2996e8b
Contents?: true
Size: 504 Bytes
Versions: 28
Compression:
Stored size: 504 Bytes
Contents
module Souls class Delete < Thor desc "type_rbs [CLASS_NAME]", "Delete GraphQL Type RBS" def type_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/types" file_path = "#{file_dir}/#{singularized_class_name}_type.rbs" FileUtils.rm_f(file_path) end Souls::Painter.delete_file(file_path.to_s) file_path end end end
Version data entries
28 entries across 28 versions & 1 rubygems