Sha256: 25890614b47df07d023a5150c6c714e2fec69df8d094ab9c2ff2efbe781add93
Contents?: true
Size: 386 Bytes
Versions: 49
Compression:
Stored size: 386 Bytes
Contents
module Souls class Delete < Thor desc "rspec_factory [CLASS_NAME]", "Delete Rspec Factory Test from schema.rb" def rspec_factory(class_name) file_path = "./spec/factories/#{class_name.pluralize}.rb" FileUtils.rm_f(file_path) puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) file_path end end end
Version data entries
49 entries across 49 versions & 1 rubygems