lib/pry-byebug/commands/continue.rb in pry-byebug-3.5.1 vs lib/pry-byebug/commands/continue.rb in pry-byebug-3.6.0

- old
+ new

@@ -1,18 +1,18 @@ -require 'pry-byebug/helpers/navigation' -require 'pry-byebug/helpers/breakpoints' +require "pry-byebug/helpers/navigation" +require "pry-byebug/helpers/breakpoints" module PryByebug # # Continue program execution until the next breakpoint # class ContinueCommand < Pry::ClassCommand include Helpers::Navigation include Helpers::Breakpoints - match 'continue' - group 'Byebug' - description 'Continue program execution and end the Pry session.' + match "continue" + group "Byebug" + description "Continue program execution and end the Pry session." banner <<-BANNER Usage: continue [LINE] Continue program execution until the next breakpoint, or the program