mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
641afc4b8c
To get the metrics, run the following rake task: `rake metrics:decoupling`
26 lines
716 B
Ruby
26 lines
716 B
Ruby
namespace :metrics do
|
|
desc 'Prints out some basic decoupling metrics'
|
|
task decoupling: :environment do
|
|
erb_nr = 0
|
|
jsx_nr = 0
|
|
Dir.glob('**/*.erb') { erb_nr += 1 }
|
|
Dir.glob('**/*.jsx') { jsx_nr += 1 }
|
|
|
|
# Print the metrics
|
|
puts ''
|
|
puts '**********************************'
|
|
puts '** **'
|
|
puts '** Decoupling metrics **'
|
|
puts '** **'
|
|
puts '**********************************'
|
|
puts ''
|
|
puts 'Nr. of ERB template files (*.erb):'
|
|
puts erb_nr
|
|
puts ''
|
|
puts 'Nr. of React template files (*.jsx):'
|
|
puts jsx_nr
|
|
puts ''
|
|
puts '**********************************'
|
|
puts ''
|
|
end
|
|
end
|