57
58
59
60
61
62
63
64
65
66
67
68
69
|
# File 'lib/maximus/cli.rb', line 57
def git
all_tasks = ['frontend', 'backend', 'statistics']
return all_tasks.each { |a| send(a) } if options[:all]
return all_tasks.each { |a| check_option(a) } unless options[:frontend].blank? && options[:backend].blank? && options[:statistics].blank?
return options[:include].each { |i| send(i) } unless options[:include].blank?
@config.settings[:commit] = options[:git]
Maximus::GitControl.new({config: @config}).lints_and_stats(true)
@config.destroy_temp
end
|