Class: Addons::Recipe::Instructions::Bundler

Inherits:
Object
  • Object
show all
Defined in:
lib/addons/recipes/instructions.rb

Overview

class Rails

Constant Summary collapse

BUNDLER_INSTALL =
{
  "run_msg" => "running bundle install",
  "type" => InstructionTypes::TERMINAL_COMMAND,
  "command" => "bundle install",
  "expected_result" => {
    "type" => ResultTypes::NO_EXPECTATION
  },
  "error_msg" => "Error: You have unstaged files or uncommitted changes in Git. Please commit or stash everything so we can start on a clean slate."
}