code_statistics 0.2.12 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ todos:
8
8
  * count number of total files
9
9
  * count number of of .rb or passed in filter files
10
10
  * find todo, perf, bug, hack, etc comments and display them with info about them (line number etc)
11
-
11
+ *reduce duplication between bin and task
12
12
 
13
13
  contact@devver.net
14
14
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.12
1
+ 0.2.13
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{code_statistics}
8
- s.version = "0.2.12"
8
+ s.version = "0.2.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dan Mayer"]
@@ -2,6 +2,7 @@ stats_directories = [
2
2
  %w(Libraries lib/),
3
3
  %w(Source source/),
4
4
  %w(Src src/),
5
+ %w(Features features/),
5
6
  ].collect { |name, dir| [ name, "#{Dir.pwd}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
6
7
 
7
8
  if ENV['DIRECTORIES_TO_CALCULATE']
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 12
9
- version: 0.2.12
8
+ - 13
9
+ version: 0.2.13
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dan Mayer