Method: Pyonnuka::Generators::AppGenerator#start
- Defined in:
- lib/pyonnuka/base.rb
#start ⇒ Object
53 54 55 56 57 58 59 60 |
# File 'lib/pyonnuka/base.rb', line 53 def start puts "Project #{@app_name} is now creating..." ::FileUtils.mkdir(@app_name) %w(gemfile configru app config).each do |file| self.send("create_#{file}") end end |