class Skeletoruby::Commands::CreateBin

Public Class Methods

call(project_name) click to toggle source
# File lib/skeletoruby/commands/create_bin.rb, line 6
def self.call(project_name)
  FileUtils.mkdir_p("#{project_name}/bin")
  FileUtils.touch("#{project_name}/bin/.keep")
end