Sha256: da70dec79b910524b28dd332a93e1389a49729fe42bc83b3f5ed03568f7f8f46
Contents?: true
Size: 718 Bytes
Versions: 120
Compression:
Stored size: 718 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 file_dir = "./sig/api/app/graphql/types/connections/" FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir) singularized_class_name = class_name.underscore.singularize file_path = "#{file_dir}#{singularized_class_name}_connection.rbs" FileUtils.rm(file_path) puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) end file_path rescue Thor::Error => e raise(Thor::Error, e) end end end
Version data entries
120 entries across 120 versions & 1 rubygems