Method: Aubi.create

Defined in:
lib/aubi.rb

.create(options) ⇒ Object



2
3
4
5
6
7
# File 'lib/aubi.rb', line 2

def self.create(options)
  case options[:app]
  when "rails"
    system("rails new #{options[:name]}")
  end
end