mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
simple solution that brings rake stats task to every kind of rails project
This commit is contained in:
parent
6c30717f8c
commit
272f80dc16
1 changed files with 22 additions and 18 deletions
|
@ -1,23 +1,27 @@
|
|||
# while having global constant is not good,
|
||||
# many 3rd party tools depend on it, like rspec-rails, cucumber-rails, etc
|
||||
# so if will be removed - deprecation warning is needed
|
||||
STATS_DIRECTORIES = [
|
||||
%w(Controllers app/controllers),
|
||||
%w(Helpers app/helpers),
|
||||
%w(Models app/models),
|
||||
%w(Mailers app/mailers),
|
||||
%w(Javascripts app/assets/javascripts),
|
||||
%w(Libraries lib/),
|
||||
%w(APIs app/apis),
|
||||
%w(Controller\ tests test/controllers),
|
||||
%w(Helper\ tests test/helpers),
|
||||
%w(Model\ tests test/models),
|
||||
%w(Mailer\ tests test/mailers),
|
||||
%w(Integration\ tests test/integration),
|
||||
%w(Functional\ tests\ (old) test/functional),
|
||||
%w(Unit\ tests \ (old) test/unit)
|
||||
].collect do |name, dir|
|
||||
[ name, "#{File.dirname(Rake.application.rakefile_location)}/#{dir}" ]
|
||||
end.select { |name, dir| File.directory?(dir) }
|
||||
|
||||
desc "Report code statistics (KLOCs, etc) from the application or engine"
|
||||
task :stats do
|
||||
require 'rails/code_statistics'
|
||||
|
||||
STATS_DIRECTORIES = [
|
||||
%w(Controllers app/controllers),
|
||||
%w(Helpers app/helpers),
|
||||
%w(Models app/models),
|
||||
%w(Mailers app/mailers),
|
||||
%w(Javascripts app/assets/javascripts),
|
||||
%w(Libraries lib/),
|
||||
%w(APIs app/apis),
|
||||
%w(Controller\ tests test/controllers),
|
||||
%w(Helper\ tests test/helpers),
|
||||
%w(Model\ tests test/models),
|
||||
%w(Mailer\ tests test/mailers),
|
||||
%w(Integration\ tests test/integration),
|
||||
%w(Functional\ tests\ (old) test/functional),
|
||||
%w(Unit\ tests \ (old) test/unit)
|
||||
].collect { |name, dir| [ name, "#{defined?(ENGINE_PATH)? ENGINE_PATH : Rails.root}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
|
||||
|
||||
CodeStatistics.new(*STATS_DIRECTORIES).to_s
|
||||
end
|
Loading…
Reference in a new issue