class Fig::Command::Action::Options
Public Instance Methods
configure(options)
click to toggle source
# File lib/fig/command/action/options.rb, line 22 def configure(options) @options_message = options.options_message end
execute()
click to toggle source
# File lib/fig/command/action/options.rb, line 26 def execute() puts "Fig options:\n\n" puts @options_message return EXIT_SUCCESS end
execute_immediately_after_command_line_parse?()
click to toggle source
# File lib/fig/command/action/options.rb, line 18 def execute_immediately_after_command_line_parse? return true end
options()
click to toggle source
# File lib/fig/command/action/options.rb, line 14 def options() return %w<--options> end