git-age 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/git/age/main.rb +3 -1
- data/lib/git/age/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ca88ce726a22c3d328f0b6835f6a8d8bb4fe536f94758ac379affd74e60186c
|
4
|
+
data.tar.gz: 967fdf60b74d412fc14018a53b90f448a616866a8d1bcbbe38a63d5864cb8fd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a681fea9df900e90e6a24412fee946c04345871834a93d055837c3f8077521b9c9539c51255673892d4c1f9cb47c9da383c7a3e25a6a80b43aec5a9950dc0d25
|
7
|
+
data.tar.gz: 888a69bac791c31113da473ce63ea3377ca139fc4db8961466f24094b04c7134562373439f548ad172f28dafec688ad00bb15754316d6c76dd6f616087917ad1
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/lib/git/age/main.rb
CHANGED
@@ -64,8 +64,10 @@ module Git
|
|
64
64
|
STDOUT.puts "Creating CSV file #{output} ...".ljust(@winsize[1])
|
65
65
|
|
66
66
|
File.open(output, 'w') do |file|
|
67
|
+
file << "\"date\",\"lines\"\n"
|
68
|
+
|
67
69
|
@dates.each do |key, value|
|
68
|
-
file << "#{key},#{value}\n"
|
70
|
+
file << "\"#{key}\",#{value}\n"
|
69
71
|
end
|
70
72
|
end
|
71
73
|
rescue => e
|
data/lib/git/age/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-age
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eustaquio Rangel
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
rubygems_version: 3.
|
86
|
+
rubygems_version: 3.3.7
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: Create a CSV file with line year and month from your Git repository
|
metadata.gz.sig
CHANGED
Binary file
|