class ActiveScripts::Packages::Rails

Private Instance Methods

install() click to toggle source

INFO: ActiveScripts::Packages::Rails contains code that

execute the Rails package.
# File lib/active_scripts/packages/rails.rb, line 10
def install
  execute_command!("sudo apt-add-repository -y ppa:chris-lea/node.js")
  execute_command!("sudo apt-get -y install libssl-dev libreadline-dev libyaml-dev python-software-properties libxslt1-dev libxml2-dev nodejs checkinstall")

  say_ok("   Installation complete!")
end
uninstall() click to toggle source
# File lib/active_scripts/packages/rails.rb, line 21
def uninstall
  notify_command_todo!
end
upgrade() click to toggle source
# File lib/active_scripts/packages/rails.rb, line 17
def upgrade
  notify_command_todo!
end