Class: Chid::Commands::Installs::Node

Inherits:
Chid::Command show all
Defined in:
lib/chid/commands/installs/node.rb

Constant Summary

Constants inherited from Chid::Command

Chid::Command::COMMANDS

Instance Attribute Summary

Attributes inherited from Chid::Command

#options

Instance Method Summary collapse

Methods inherited from Chid::Command

command, help, #initialize, map_options_with_values, run

Constructor Details

This class inherits a constructor from Chid::Command

Instance Method Details

#runObject



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/chid/commands/installs/node.rb', line 22

def run
  puts "\nInstalling the Node..."

  ::ChidConfig.on_linux do
    system('sudo apt-get install nodejs')
  end

  ::ChidConfig.on_osx do
    system('brew install node')
  end

  puts "\nNode installed successfully"
end