class Golem::Command::SaveConfig
Command to save configuration file.
Constants
- USAGE
@private
Public Instance Methods
run()
click to toggle source
Run the command. Calls {Golem::Config.save!}.
# File lib/golem/command/save_config.rb, line 7 def run Golem::Config.save! print "Config was saved to #{Golem::Config.cfg_path.to_s}\n" if verbose? end