class Guard::Jobs::PryWrapper

def _create_guard_commands


`rspec` is created that runs `all rspec`.
when guard-rspec is available, then a command
action on a specific Guard plugin. For example,
Create a shorthand command to run the `:run_all`
def _create_guard_commands
  Guard.state.session.plugins.all.each do |guard_plugin|
    cmd = "Run all #{guard_plugin.title}"
    _pry_commands.create_command guard_plugin.name, cmd do
      group "Guard"
      def process
        Pry.run_command "all #{ match }"
      end
    end
  end
end