Method: Creact::FileOperations#create_dirs

Defined in:
lib/creact/file_handlers.rb

#create_dirsObject



9
10
11
12
13
# File 'lib/creact/file_handlers.rb', line 9

def create_dirs
  @dirs = ['views', 'js']
  puts 'Creating the following dirs: ' + @dirs.join(' ')
  FileUtils.makedirs @dirs
end