Module: Appsta::DefaultFiles

Included in:
Appsta
Defined in:
lib/appsta/default_files.rb

Instance Method Summary collapse

Instance Method Details

#remove_default_filesObject

This removes some of the default files that we don’t really need for a fresh Rails app



4
5
6
7
8
# File 'lib/appsta/default_files.rb', line 4

def remove_default_files
  ["README", "public/index.html", "public/favicon.ico"].each do |path|
    run "rm -f #{path}"
  end
end