Class: Oulu::Generator

Inherits:
Thor
  • Object
show all
Defined in:
lib/oulu/generator.rb

Instance Method Summary collapse

Instance Method Details

#installObject



11
12
13
14
15
16
17
18
# File 'lib/oulu/generator.rb', line 11

def install
  if oulu_files_already_exist? && !options[:force]
    puts "Oulu files already installed, doing nothing."
  else
    install_files
    puts "Oulu files installed to #{install_path}/"
  end
end

#updateObject



22
23
24
25
26
27
28
29
30
# File 'lib/oulu/generator.rb', line 22

def update
  if oulu_files_already_exist?
    remove_oulu_directory
    install_files
    puts "Oulu files updated."
  else
    puts "No existing oulu installation. Doing nothing."
  end
end

#versionObject



33
34
35
# File 'lib/oulu/generator.rb', line 33

def version
  say "Oulu #{Oulu::VERSION}"
end