module ArmaFixer
Constants
- VERSION
Public Instance Methods
run!()
click to toggle source
# File lib/arma_fixer.rb, line 11 def run! start_time = Time.now show 'Started ArmaFixer task...' ArmaFixer::Validation.run! ArmaFixer::Execute.run! time_taken = (Time.now - start_time).round(2) show "Completed ArmaFixer task in #{time_taken} seconds." end