Class: Ethosstyles::Generator
- Inherits:
-
Thor
- Object
- Thor
- Ethosstyles::Generator
- Defined in:
- lib/ethosstyles/generator.rb
Instance Method Summary collapse
Instance Method Details
#install ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/ethosstyles/generator.rb', line 11 def install if ethosstyles_files_already_exist? && ![:force] puts "Ethosstyles files already installed, doing nothing." else install_files puts "Ethosstyles files installed to #{install_path}/" end end |
#update ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/ethosstyles/generator.rb', line 22 def update if ethosstyles_files_already_exist? remove_ethosstyles_directory install_files puts "Ethosstyles files updated." else puts "No existing ethosstyles installation. Doing nothing." end end |
#version ⇒ Object
33 34 35 |
# File 'lib/ethosstyles/generator.rb', line 33 def version say "Ethosstyles #{Ethosstyles::VERSION}" end |