class Dolphin::InstallGenerator

Public Instance Methods

setup() click to toggle source
# File lib/generators/dolphin/install_generator.rb, line 6
def setup
  target = "bin/dolphin"
  copy_file "dolphin", target
  # make it executable
  chmod(target, 0755)
  puts "Now edit #{target}  to adjust deployment settings\nThen run bin/dolphin to deploy."
end