Created
January 26, 2009 17:57
-
-
Save kmarsh/52889 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :spec do | |
# largely lifted from http://www.pervasivecode.com/blog/2007/06/28/hacking-rakestats-to-get-gross-loc/ | |
task :stats_setup do | |
require 'code_statistics' | |
class CodeStatistics | |
alias calculate_statistics_orig calculate_statistics | |
def calculate_statistics | |
@pairs.inject({}) do |stats, pair| | |
if 3 == pair.size | |
stats[pair.first] = calculate_directory_statistics(pair[1], pair[2]); stats | |
else | |
stats[pair.first] = calculate_directory_statistics(pair.last); stats | |
end | |
end | |
end | |
end | |
::STATS_DIRECTORIES = [] | |
::STATS_DIRECTORIES << ['Views', 'app/views', /\.(rhtml|erb|rb)$/] | |
::STATS_DIRECTORIES << ['CSS', 'public', /\.css$/] | |
end | |
end | |
namespace :stats do | |
desc "Report code statistics (KLOCs, etc) for non-code like HTML and CSS from the application" | |
task :static => ["spec:stats_setup", "stats"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment