countloc 0.2.0 → 0.2.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/README +8 -1
- data/lib/countloc.rb +2 -2
- metadata +2 -2
data/README
CHANGED
|
@@ -15,7 +15,7 @@ Subsequent releases will add support for other programming languages such as
|
|
|
15
15
|
Python, C, C++, C#, Java, Perl, etc. ...
|
|
16
16
|
|
|
17
17
|
== Download
|
|
18
|
-
The latest release can be downloaded from: http://rubyforge.org/
|
|
18
|
+
The latest release can be downloaded from: http://rubyforge.org/projects/countloc/
|
|
19
19
|
|
|
20
20
|
== Installation
|
|
21
21
|
CountLOC is packaged as a Ruby gem and as a .zip file.
|
|
@@ -60,6 +60,13 @@ To export the results to a csv file:
|
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
== Release Notes
|
|
63
|
+
=== Release 0.2.1:
|
|
64
|
+
Features
|
|
65
|
+
* None
|
|
66
|
+
|
|
67
|
+
Bugfixes:
|
|
68
|
+
* #23479 - Column headers not displayed on console view of results
|
|
69
|
+
|
|
63
70
|
=== Release 0.2.0:
|
|
64
71
|
Features
|
|
65
72
|
* Added support for exporting results in csv and html format.
|
data/lib/countloc.rb
CHANGED
|
@@ -31,7 +31,7 @@ require 'time'
|
|
|
31
31
|
#
|
|
32
32
|
module CountLOC
|
|
33
33
|
|
|
34
|
-
VERSION = '0.2.
|
|
34
|
+
VERSION = '0.2.1'
|
|
35
35
|
|
|
36
36
|
# Class that gathers the metrics.
|
|
37
37
|
#
|
|
@@ -192,7 +192,7 @@ module CountLOC
|
|
|
192
192
|
class ConsoleWriter
|
|
193
193
|
# Write the data to the console
|
|
194
194
|
def write(data)
|
|
195
|
-
puts data
|
|
195
|
+
puts data.to_s
|
|
196
196
|
end
|
|
197
197
|
end
|
|
198
198
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: countloc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Doyle
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-01-
|
|
12
|
+
date: 2009-01-06 23:49:40.884164 +00:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|