You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
462 B
19 lines
462 B
# frozen_string_literal: true |
|
|
|
task stats: 'mastodon:stats' |
|
|
|
namespace :mastodon do |
|
desc 'Report code statistics (KLOCs, etc)' |
|
task :stats do |
|
require 'rails/code_statistics' |
|
[ |
|
['App Libraries', 'app/lib'], |
|
%w(Presenters app/presenters), |
|
%w(Services app/services), |
|
%w(Validators app/validators), |
|
%w(Workers app/workers), |
|
].each do |name, dir| |
|
STATS_DIRECTORIES << [name, Rails.root.join(dir)] |
|
end |
|
end |
|
end
|
|
|