Class: HTTY::CLI::Commands::SslVerification
- Inherits:
-
HTTY::CLI::Command
- Object
- HTTY::CLI::Command
- HTTY::CLI::Commands::SslVerification
- Includes:
- Display
- Defined in:
- lib/htty/cli/commands/ssl_verification.rb
Overview
Encapsulates the ssl-verification command.
Constant Summary
Constant Summary
Constants included from Display
Instance Attribute Summary
Attributes inherited from HTTY::CLI::Command
Class Method Summary (collapse)
-
+ (Object) category
Returns the name of a category under which help for the ssl-verification command should appear.
-
+ (Object) help
Returns the help text for the ssl-verification command.
-
+ (Object) help_extended
Returns the extended help text for the ssl-verification command.
-
+ (Object) see_also_commands
Returns related command classes for the ssl-verification command.
Instance Method Summary (collapse)
-
- (Object) perform
Performs the ssl-verification command.
Methods included from Display
#format, #indent, #logotype, #normal, #notice, #pluralize, #prompt, #rescuing_from, #say, #say_goodbye, #say_header, #say_hello, #show_headers, #show_request, #show_response, #strong, #word_wrap, #word_wrap_indented
Methods inherited from HTTY::CLI::Command
#add_request_if_new, alias_for, aliases, build_for, command_line, command_line_arguments, complete_for?, #initialize, notify_if_cookies_cleared, raw_name
Constructor Details
This class inherits a constructor from HTTY::CLI::Command
Class Method Details
+ (Object) category
Returns the name of a category under which help for the ssl-verification command should appear.
20 21 22 |
# File 'lib/htty/cli/commands/ssl_verification.rb', line 20 def self.category 'Preferences' end |
+ (Object) help
Returns the help text for the ssl-verification command.
25 26 27 |
# File 'lib/htty/cli/commands/ssl_verification.rb', line 25 def self.help 'Displays the preference for SSL certificate verification' end |
+ (Object) help_extended
Returns the extended help text for the ssl-verification command.
30 31 32 33 34 35 36 |
# File 'lib/htty/cli/commands/ssl_verification.rb', line 30 def self.help_extended 'Displays the preference for SSL certificate verification. Does not ' + "communicate with the host.\n" + "\n" + 'When issuing HTTP Secure requests, server certificates will be ' + 'verified. You can disable and reenable this behavior.' end |
+ (Object) see_also_commands
Returns related command classes for the ssl-verification command.
39 40 41 42 |
# File 'lib/htty/cli/commands/ssl_verification.rb', line 39 def self.see_also_commands [HTTY::CLI::Commands::SslVerificationOff, HTTY::CLI::Commands::SslVerificationOn] end |
Instance Method Details
- (Object) perform
Performs the ssl-verification command.
45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/htty/cli/commands/ssl_verification.rb', line 45 def perform unless arguments.empty? raise ArgumentError, "wrong number of arguments (#{arguments.length} for 0)" end will_or_not = HTTY::Preferences.current.verify_certificates? ? 'will' : 'will not' puts notice("SSL certificates #{will_or_not} be verified") end |