class Fig::Command::Action::ListVariables

Public Instance Methods

list_variables?() click to toggle source

Is this –list-variables?

# File lib/fig/command/action/list_variables.rb, line 27
def list_variables?()
  return true
end
options() click to toggle source
# File lib/fig/command/action/list_variables.rb, line 14
def options()
  if sub_action
    return sub_action.options
  end

  return %w<--list-variables>
end
reset_environment?() click to toggle source
# File lib/fig/command/action/list_variables.rb, line 22
def reset_environment?()
  return true
end