class Guard::Jobs::PryWrapper

def _create_group_commands


`frontend` is created that runs `all frontend`.
when you have a group `frontend`, then a command
action on a specific Guard group. For example,
Create a shorthand command to run the `:run_all`
def _create_group_commands
  Guard.state.session.groups.all.each do |group|
    next if group.name == :default
    cmd = "Run all #{group.title}"
    _pry_commands.create_command group.name.to_s, cmd do
      group "Guard"
      def process
        Pry.run_command "all #{ match }"
      end
    end
  end
end