class ResponseMate::CLI
Entry point of the command-line interface
Public Instance Methods
export()
click to toggle source
# File lib/response_mate/cli.rb, line 56 def export ResponseMate::Commands::Export.new(args, options).run end
inspect(*keys)
click to toggle source
# File lib/response_mate/cli.rb, line 24 def inspect(*keys) # rubocop:disable Lint/UnusedMethodArgument ResponseMate::Commands::Inspect.new(args, options).run end
list()
click to toggle source
# File lib/response_mate/cli.rb, line 35 def list # rubocop:disable Lint/UnusedMethodArgument ResponseMate::Commands::List.new(args, options).run end
record()
click to toggle source
# File lib/response_mate/cli.rb, line 15 def record ResponseMate::Commands::Record.new(args, options).run end
version()
click to toggle source
# File lib/response_mate/cli.rb, line 40 def version puts "response_mate version #{ResponseMate::VERSION}" end