Class: Cmc::Oncilla::Wizard::Wizard

Inherits:
Object
  • Object
show all
Defined in:
lib/cmc-oncilla-wizard/wizard.rb

Instance Method Summary collapse

Instance Method Details

#create(path) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/cmc-oncilla-wizard/wizard.rb', line 9

def create path

  path = File.expand_path path
  test_path path

  dir = Dir.mktmpdir
  Dir.chdir(dir) do
    create_private path
  end

end