Module: Trooper::Config::Defaults
Constant Summary collapse
- FILE_NAME =
"Troopfile"
Constants included from Action
Instance Method Summary collapse
Methods included from Action
#action, #load_default_actions!
Instance Method Details
#load_defaults!(options = {}) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/trooper/config/defaults.rb', line 10 def load_defaults!( = {}) config[:file_name] = [:file_name] || FILE_NAME config[:environment] = [:environment] || :production config[:ruby_bin_path] = [:ruby_bin_path] || "" load_default_actions! end |