class Shred::Commands::RubyDeps

Public Instance Methods

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