class Sfctl::Commands::Time::Providers
Public Instance Methods
get(*)
click to toggle source
# File lib/sfctl/commands/time/providers.rb, line 33 def get(*) if options[:help] invoke :help, ['get'] else require_relative 'providers/get' Sfctl::Commands::Time::Providers::Get.new(options).execute end end
set(*)
click to toggle source
# File lib/sfctl/commands/time/providers.rb, line 11 def set(*) if options[:help] invoke :help, ['set'] else require_relative 'providers/set' Sfctl::Commands::Time::Providers::Set.new(options).execute end end
unset(*)
click to toggle source
# File lib/sfctl/commands/time/providers.rb, line 22 def unset(*) if options[:help] invoke :help, ['unset'] else require_relative 'providers/unset' Sfctl::Commands::Time::Providers::Unset.new(options).execute end end