class Shred::Commands::JsDeps

Public Instance Methods

install() click to toggle source
# File lib/shred/commands/js_deps.rb, line 7
def install
  run_shell_command(ShellCommand.new(
    command_lines: 'bin/rake bower:install',
    success_msg: "JavaScript dependencies installed",
    error_msg: "JavaScript dependencies could not be installed"
  ))
end