flog 1.0.0 → 1.0.1
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.
- data/History.txt +6 -1
- data/Rakefile +3 -1
- data/bin/flog +1 -1
- metadata +10 -1
data/History.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -9,7 +9,9 @@ Hoe.new('flog', Flog::VERSION) do |p|
|
|
|
9
9
|
p.summary = p.paragraphs_of('README.txt', 2).first
|
|
10
10
|
p.description = p.paragraphs_of('README.txt', 2, 6).join("\n\n")
|
|
11
11
|
p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/).last.strip
|
|
12
|
-
p.changes = p.paragraphs_of('History.txt',
|
|
12
|
+
p.changes = p.paragraphs_of('History.txt', 1).join("\n\n")
|
|
13
|
+
|
|
14
|
+
p.extra_deps << ["ParseTree", '>= 2.0.0']
|
|
13
15
|
end
|
|
14
16
|
|
|
15
17
|
# vim: syntax=Ruby
|
data/bin/flog
CHANGED
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: flog
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.0.
|
|
6
|
+
version: 1.0.1
|
|
7
7
|
date: 2007-08-01 00:00:00 -07:00
|
|
8
8
|
summary: Flog reports the most tortured code in an easy to read pain report. The higher the score, the more pain the code is in.
|
|
9
9
|
require_paths:
|
|
@@ -50,6 +50,15 @@ extensions: []
|
|
|
50
50
|
requirements: []
|
|
51
51
|
|
|
52
52
|
dependencies:
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: ParseTree
|
|
55
|
+
version_requirement:
|
|
56
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 2.0.0
|
|
61
|
+
version:
|
|
53
62
|
- !ruby/object:Gem::Dependency
|
|
54
63
|
name: hoe
|
|
55
64
|
version_requirement:
|