Class: Mina::Stack::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/mina/stack/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#do_allObject



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/generators/mina/stack/install_generator.rb', line 11

def do_all
  create_servers_directory
  copy_server_example
  copy_deploy_script
  message = <<-RUBY

  Install complete! See the README on Github for instructions on getting your
  deploy running with mina-stack.

  RUBY
  puts message.strip_heredoc

end