Created
January 26, 2009 17:57
-
-
Save kmarsh/52889 to your computer and use it in GitHub Desktop.
Revisions
-
kmarsh revised this gist
Jan 26, 2009 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ 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' -
kmarsh created this gist
Jan 26, 2009 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ namespace :spec do # 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