Class: Asteroid::NewApplication

Inherits:
Thor
  • Object
show all
Defined in:
lib/asteroid/application.rb

Instance Method Summary collapse

Instance Method Details

#new(name) ⇒ Object



75
76
77
78
79
80
81
82
# File 'lib/asteroid/application.rb', line 75

def new(name)
  project_root = File.expand_path name

  generator = Asteroid::Generator.new project_root
  generator.generate!

  #puts "from: #{options[:from]}" if options[:from]
end