Sha256: fa42015f6d998d7d9413f1d482f1b0f2e00e93414e5535afb80dc3f5e5c671a0
Contents?: true
Size: 544 Bytes
Versions: 28
Compression:
Stored size: 544 Bytes
Contents
module Souls class Delete < Thor desc "connection_rbs [CLASS_NAME]", "Delete GraphQL Connection RBS" def connection_rbs(class_name) file_path = "" Dir.chdir(Souls.get_mother_path.to_s) do singularized_class_name = class_name.underscore.singularize file_dir = "./sig/api/app/graphql/types/connections/" file_path = "#{file_dir}#{singularized_class_name}_connection.rbs" FileUtils.rm_f(file_path) Souls::Painter.delete_file(file_path.to_s) end file_path end end end
Version data entries
28 entries across 28 versions & 1 rubygems