nova_git_stats 2.4.0 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -1
- data/README.md +12 -12
- data/lib/git_stats/cli.rb +1 -1
- data/lib/git_stats/command_parser.rb +1 -1
- data/lib/git_stats/git_data/author.rb +2 -2
- data/lib/git_stats/git_data/comment_stat.rb +1 -1
- data/lib/git_stats/git_data/repo.rb +3 -3
- data/lib/git_stats/hash_initializable.rb +1 -1
- data/lib/git_stats/stats_view/charts/authors_charts.rb +6 -6
- data/lib/git_stats/stats_view/view.rb +1 -1
- data/lib/git_stats/version.rb +1 -1
- data/lib/git_stats.rb +1 -0
- data/templates/activity/_activity.haml +4 -4
- data/templates/activity/by_date.haml +1 -1
- data/templates/activity/day_of_week.haml +1 -1
- data/templates/activity/hour_of_day.haml +1 -1
- data/templates/activity/hour_of_week.haml +1 -1
- data/templates/activity/month_of_year.haml +1 -1
- data/templates/activity/year.haml +1 -1
- data/templates/activity/year_month.haml +1 -1
- data/templates/author_details/changed_lines_by_date.haml +1 -1
- data/templates/author_details/commits_by_date.haml +1 -1
- data/templates/author_details/deletions_by_date.haml +1 -1
- data/templates/author_details/insertions_by_date.haml +1 -1
- data/templates/authors/best_authors.haml +1 -1
- data/templates/authors/changed_lines_by_author_by_date.haml +1 -1
- data/templates/authors/commits_sum_by_author_by_date.haml +1 -1
- data/templates/authors/deletions_by_author_by_date.haml +1 -1
- data/templates/authors/insertions_by_author_by_date.haml +1 -1
- data/templates/comments/_comments.haml +1 -2
- data/templates/comments/by_date.haml +1 -1
- data/templates/files/by_date.haml +1 -1
- data/templates/files/by_extension.haml +1 -1
- data/templates/general.haml +1 -1
- data/templates/layout.haml +1 -1
- data/templates/lines/by_date.haml +1 -1
- data/templates/lines/by_extension.haml +1 -1
- metadata +29 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce15e1b60aa22dd74720e59cf5db6825ae48bb3bf33142b55413717e47c23233
|
4
|
+
data.tar.gz: 53f03d8888c3ae30bb15a8a1c2a21cc2f6a9d5de0c7ca0c8fcfdde0c935e166e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a913190d4e023315a6796bc4ce8ed324afe95c502d9abfe1d48cb8a699218cfc1639dc6b5dcff5bdcba3c006b90a038003484f21cd62fac0d460e8848f6dba07
|
7
|
+
data.tar.gz: b9f205474969fd8a00435151da1bde903334c26e9c638c7e4c99ee8d8c3e900ab90d690856b5b7e2e913854ab53453d80f04f4cb712d7fb945eb618c284e18ab
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,31 @@
|
|
2
2
|
|
3
3
|
## [master]
|
4
4
|
|
5
|
-
[master]: https://github.com/mishina2228/nova_git_stats/compare/v2.4.
|
5
|
+
[master]: https://github.com/mishina2228/nova_git_stats/compare/v2.4.2...master
|
6
|
+
|
7
|
+
## [2.4.2]
|
8
|
+
|
9
|
+
[2.4.2]: https://github.com/mishina2228/nova_git_stats/compare/v2.4.1...v2.4.2
|
10
|
+
|
11
|
+
* Changes
|
12
|
+
* Add support for actionview 8
|
13
|
+
* Add support for activesupport 8
|
14
|
+
* Bugfixes
|
15
|
+
* Now templates are returned in alphabetical order
|
16
|
+
* `GitStats::StatsView::View#all_templates` should return all templates in alphabetical order.
|
17
|
+
* `Dir.[]` returns sorted results by default from Ruby 3.0, but earlier than 2.7 does not.
|
18
|
+
* refs:
|
19
|
+
* https://ruby-doc.org/core-2.7.6/Dir.html#method-c-5B-5D
|
20
|
+
* https://ruby-doc.org/core-3.0.4/Dir.html#method-c-5B-5D
|
21
|
+
|
22
|
+
## [2.4.1]
|
23
|
+
|
24
|
+
[2.4.1]: https://github.com/mishina2228/nova_git_stats/compare/v2.4.0...v2.4.1
|
25
|
+
|
26
|
+
* Changes
|
27
|
+
* Relax activesupport version from `>= 6.1` to `>= 5.2`
|
28
|
+
* Replace deprecated DateTime with Time
|
29
|
+
* Support Haml 6
|
6
30
|
|
7
31
|
## [2.4.0]
|
8
32
|
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# NovaGitStats
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/nova_git_stats.svg)](https://badge.fury.io/rb/nova_git_stats)
|
4
|
-
![
|
4
|
+
[![Test](https://github.com/mishina2228/nova_git_stats/actions/workflows/test.yml/badge.svg)](https://github.com/mishina2228/nova_git_stats/actions/workflows/test.yml)
|
5
5
|
[![Documentation](https://img.shields.io/badge/docs-rubydoc.info-blue.svg)](https://rubydoc.info/gems/nova_git_stats)
|
6
6
|
[![Maintainability](https://api.codeclimate.com/v1/badges/118cce63cc58fef4ae47/maintainability)](https://codeclimate.com/github/mishina2228/git_stats/maintainability)
|
7
7
|
[![codecov](https://codecov.io/gh/mishina2228/nova_git_stats/branch/master/graph/badge.svg?token=532RLO5L7A)](https://codecov.io/gh/mishina2228/nova_git_stats)
|
@@ -13,30 +13,30 @@ It browses the repository and outputs html page with statistics.
|
|
13
13
|
|
14
14
|
## Examples
|
15
15
|
|
16
|
-
* [Bootstrap](https://mishina2228.github.io/
|
17
|
-
* [Devise](https://mishina2228.github.io/
|
18
|
-
* [DeviseInvitable](https://mishina2228.github.io/
|
19
|
-
* [John](https://mishina2228.github.io/
|
20
|
-
* [jQuery](https://mishina2228.github.io/
|
21
|
-
* [Rails](https://mishina2228.github.io/
|
22
|
-
* [React](https://mishina2228.github.io/
|
23
|
-
* [Vue](https://mishina2228.github.io/
|
16
|
+
* [Bootstrap](https://mishina2228.github.io/nova_git_stats_sample/bootstrap/)
|
17
|
+
* [Devise](https://mishina2228.github.io/nova_git_stats_sample/devise/)
|
18
|
+
* [DeviseInvitable](https://mishina2228.github.io/nova_git_stats_sample/devise_invitable/)
|
19
|
+
* [John](https://mishina2228.github.io/nova_git_stats_sample/john/)
|
20
|
+
* [jQuery](https://mishina2228.github.io/nova_git_stats_sample/jquery/)
|
21
|
+
* [Rails](https://mishina2228.github.io/nova_git_stats_sample/rails/)
|
22
|
+
* [React](https://mishina2228.github.io/nova_git_stats_sample/react/)
|
23
|
+
* [Vue](https://mishina2228.github.io/nova_git_stats_sample/vue/)
|
24
24
|
|
25
25
|
## Installation
|
26
26
|
|
27
27
|
### Existing ruby/gem environment
|
28
28
|
|
29
|
-
$ gem install
|
29
|
+
$ gem install nova_git_stats
|
30
30
|
|
31
31
|
### debian stretch (9.*)
|
32
32
|
|
33
33
|
# apt-get install ruby ruby-nokogiri ruby-nokogiri-diff ruby-nokogumbo
|
34
|
-
# gem install
|
34
|
+
# gem install nova_git_stats
|
35
35
|
|
36
36
|
### Ubuntu
|
37
37
|
|
38
38
|
$ sudo apt-get install ruby ruby-dev gcc zlib1g-dev make
|
39
|
-
$ sudo gem install
|
39
|
+
$ sudo gem install nova_git_stats
|
40
40
|
|
41
41
|
## Prerequisites
|
42
42
|
|
data/lib/git_stats/cli.rb
CHANGED
@@ -24,7 +24,7 @@ module GitStats
|
|
24
24
|
def generate
|
25
25
|
I18n.locale = options[:language]
|
26
26
|
GitStats::Generator.new(options) do |g|
|
27
|
-
g.add_command_observer { |command, _result| puts command
|
27
|
+
g.add_command_observer { |command, _result| puts command } unless options[:silent]
|
28
28
|
end.render_all
|
29
29
|
end
|
30
30
|
|
@@ -5,7 +5,7 @@ module GitStats
|
|
5
5
|
def parse(command, result)
|
6
6
|
cmd, params = command.scan(/git (.*) (.*)/).first.map(&:split).flatten
|
7
7
|
# TODO: params is not needed?
|
8
|
-
send("parse_#{cmd.underscore}", result, params)
|
8
|
+
send(:"parse_#{cmd.underscore}", result, params)
|
9
9
|
end
|
10
10
|
|
11
11
|
def parse_shortlog(result, _params)
|
@@ -40,7 +40,7 @@ module GitStats
|
|
40
40
|
end
|
41
41
|
|
42
42
|
[:insertions, :deletions, :changed_lines].each do |method|
|
43
|
-
define_method "total_#{method}_by_date" do
|
43
|
+
define_method :"total_#{method}_by_date" do
|
44
44
|
sum = 0
|
45
45
|
commits.map do |commit|
|
46
46
|
sum += commit.short_stat.send(method)
|
@@ -48,7 +48,7 @@ module GitStats
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
-
define_method "#{method}_by_date" do
|
51
|
+
define_method :"#{method}_by_date" do
|
52
52
|
commits.group_by { |c| c.date.to_date }.map { |arr| [arr[0], arr[1].sum { |c| c.short_stat.send(method) }] }
|
53
53
|
end
|
54
54
|
end
|
@@ -25,7 +25,7 @@ module GitStats
|
|
25
25
|
escaped_string = escape_characters_in_string(commit.repo.comment_string)
|
26
26
|
command = "git show #{commit.sha} | " \
|
27
27
|
"awk 'BEGIN {adds=0; dels=0} " \
|
28
|
-
"{if ($0 ~ /^\\+#{escaped_string}/) adds++; if ($0 ~
|
28
|
+
"{if ($0 ~ /^\\+#{escaped_string}/) adds++; if ($0 ~ /^-#{escaped_string}/) dels++} " \
|
29
29
|
"END {print adds \" insertions \" dels \" deletes\"}'"
|
30
30
|
stat_line = commit.repo.run(command).lines.to_a[0]
|
31
31
|
if stat_line.blank?
|
@@ -13,7 +13,7 @@ module GitStats
|
|
13
13
|
:files_count, :binary_files, :text_files, :lines_count, :comments_count, to: :last_commit
|
14
14
|
|
15
15
|
def initialize(params)
|
16
|
-
super
|
16
|
+
super
|
17
17
|
@path = File.expand_path(@path)
|
18
18
|
@tree_path ||= '.'
|
19
19
|
end
|
@@ -53,7 +53,7 @@ module GitStats
|
|
53
53
|
repo: self,
|
54
54
|
sha: commit_line[:sha],
|
55
55
|
stamp: commit_line[:stamp],
|
56
|
-
date:
|
56
|
+
date: Time.parse(commit_line[:date]),
|
57
57
|
author: authors.first! { |a| a.email == commit_line[:author_email] }
|
58
58
|
)
|
59
59
|
end.sort_by!(&:date)
|
@@ -70,7 +70,7 @@ module GitStats
|
|
70
70
|
|
71
71
|
# TODO: These methods are called from nowhere
|
72
72
|
[:insertions, :deletions, :changed_lines].each do |method|
|
73
|
-
define_method "#{method}_by_author" do |limit = 4|
|
73
|
+
define_method :"#{method}_by_author" do |limit = 4|
|
74
74
|
(authors.map { |author| [author, author.send(method)] }.sort_by { |_author, lines| -lines }[0..limit]).to_h
|
75
75
|
end
|
76
76
|
end
|
@@ -11,11 +11,11 @@ module GitStats
|
|
11
11
|
end
|
12
12
|
|
13
13
|
[:commits_sum].each do |method|
|
14
|
-
define_method "#{method}_by_author_by_date" do |authors = nil|
|
14
|
+
define_method :"#{method}_by_author_by_date" do |authors = nil|
|
15
15
|
Chart.new do |f|
|
16
16
|
authors ||= @authors.sort_by { |a| -a.send(method) }[0...AUTHORS_ON_CHART_LIMIT]
|
17
17
|
f.multi_date_chart(
|
18
|
-
data: authors.map { |a| {name: a.name, data: a.send("#{method}_by_date")} },
|
18
|
+
data: authors.map { |a| {name: a.name, data: a.send(:"#{method}_by_date")} },
|
19
19
|
title: :lines_by_date.t,
|
20
20
|
y_text: :lines.t
|
21
21
|
)
|
@@ -24,21 +24,21 @@ module GitStats
|
|
24
24
|
end
|
25
25
|
|
26
26
|
[:insertions, :deletions, :changed_lines].each do |method|
|
27
|
-
define_method "total_#{method}_by_author_by_date" do |authors = nil|
|
27
|
+
define_method :"total_#{method}_by_author_by_date" do |authors = nil|
|
28
28
|
Chart.new do |f|
|
29
29
|
authors ||= @authors.sort_by { |a| -a.send(method) }[0...AUTHORS_ON_CHART_LIMIT]
|
30
30
|
f.multi_date_chart(
|
31
|
-
data: authors.map { |a| {name: a.name, data: a.send("total_#{method}_by_date")} },
|
31
|
+
data: authors.map { |a| {name: a.name, data: a.send(:"total_#{method}_by_date")} },
|
32
32
|
title: :lines_by_date.t,
|
33
33
|
y_text: :lines.t
|
34
34
|
)
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
-
define_method "#{method}_by_author_by_date" do |author|
|
38
|
+
define_method :"#{method}_by_author_by_date" do |author|
|
39
39
|
Chart.new do |f|
|
40
40
|
f.date_column_chart(
|
41
|
-
data: author.send("#{method}_by_date"),
|
41
|
+
data: author.send(:"#{method}_by_date"),
|
42
42
|
title: :lines_by_date.t,
|
43
43
|
y_text: :lines.t
|
44
44
|
)
|
@@ -42,7 +42,7 @@ module GitStats
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def all_templates(root = '')
|
45
|
-
(Dir[GitStats.root.join("templates/#{root}**/[^_]*.haml")].map do |f|
|
45
|
+
(Dir[GitStats.root.join("templates/#{root}**/[^_]*.haml")].sort.map do |f|
|
46
46
|
path = Pathname.new(f)
|
47
47
|
path.relative_path_from(GitStats.root.join('templates')).sub_ext('').to_s
|
48
48
|
end - %w(layout))
|
data/lib/git_stats/version.rb
CHANGED
data/lib/git_stats.rb
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
%table{class: 'table table-bordered table-condensed'}
|
29
29
|
%tr
|
30
30
|
%th= :hour.t
|
31
|
-
-
|
31
|
+
- 24.times do |h|
|
32
32
|
%th= h
|
33
33
|
%tr
|
34
34
|
%th= :commits.t
|
@@ -60,13 +60,13 @@
|
|
60
60
|
%table{class: 'table table-bordered table-condensed'}
|
61
61
|
%tr
|
62
62
|
%th
|
63
|
-
-
|
63
|
+
- 24.times do |h|
|
64
64
|
%th= h
|
65
65
|
- max = author.activity.by_wday_hour.values.map { |h| h.values.empty? ? 0 : h.values.max }.max
|
66
|
-
-
|
66
|
+
- 7.times do |day|
|
67
67
|
%tr
|
68
68
|
%th= I18n.t('date.abbr_day_names')[day]
|
69
|
-
-
|
69
|
+
- 24.times do |hour|
|
70
70
|
- color = max ? format('%02x', 255 - author.activity.by_wday_hour[day][hour] * 100 / max) : 'FF'
|
71
71
|
%td{style: "background-color: ##{color}#{color}#{color};"}= author.activity.by_wday_hour[day][hour]
|
72
72
|
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :activity_by_date, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :day_of_week, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :hour_of_day, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :hour_of_week, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :month_of_year, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :year, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('activity/_activity', page: :year_month, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('author_details/_author_details', page: :changed_lines_by_date, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('author_details/_author_details', page: :commits_by_date, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('author_details/_author_details', page: :deletions_by_date, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('author_details/_author_details', page: :insertions_by_date, author: author)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('authors/_authors', page: :best_authors)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('authors/_authors', page: :changed_lines_by_author_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('authors/_authors', page: :commits_sum_by_author_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('authors/_authors', page: :deletions_by_author_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('authors/_authors', page: :insertions_by_author_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('comments/_comments', page: :comments_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('files/_files', page: :files_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('files/_files', page: :files_by_extension)
|
data/templates/general.haml
CHANGED
data/templates/layout.haml
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
%li.nav-item{class: active_page.start_with?(name.to_s.underscore) ? 'active' : ''}
|
29
29
|
%a.nav-link{href: link_to(href, active_page)}= name.t
|
30
30
|
.container
|
31
|
-
|
31
|
+
!= yield
|
32
32
|
%script{src: 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js',
|
33
33
|
integrity: 'sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p', crossorigin: 'anonymous'}
|
34
34
|
%script{src: 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js',
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('lines/_lines', page: :lines_by_date)
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
!= render_partial('lines/_lines', page: :lines_by_extension)
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nova_git_stats
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomasz Gieniusz
|
8
8
|
- mishina2228
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-12-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionview
|
@@ -17,54 +17,60 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '5.2'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '9.0'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
27
|
requirements:
|
28
28
|
- - ">="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
version: '
|
30
|
+
version: '5.2'
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '9.0'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: activesupport
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '5.2'
|
41
41
|
- - "<"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
43
|
+
version: '9.0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
46
|
version_requirements: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
50
|
+
version: '5.2'
|
51
51
|
- - "<"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
53
|
+
version: '9.0'
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
55
|
name: haml
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
|
-
- - "
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '5'
|
61
|
+
- - "<"
|
59
62
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
63
|
+
version: '7'
|
61
64
|
type: :runtime
|
62
65
|
prerelease: false
|
63
66
|
version_requirements: !ruby/object:Gem::Requirement
|
64
67
|
requirements:
|
65
|
-
- - "
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '5'
|
71
|
+
- - "<"
|
66
72
|
- !ruby/object:Gem::Version
|
67
|
-
version: '
|
73
|
+
version: '7'
|
68
74
|
- !ruby/object:Gem::Dependency
|
69
75
|
name: i18n
|
70
76
|
requirement: !ruby/object:Gem::Requirement
|
@@ -212,16 +218,16 @@ files:
|
|
212
218
|
- templates/lines/by_date.haml
|
213
219
|
- templates/lines/by_extension.haml
|
214
220
|
- templates/static/index.html
|
215
|
-
homepage: https://github.com/mishina2228/
|
221
|
+
homepage: https://github.com/mishina2228/nova_git_stats
|
216
222
|
licenses:
|
217
223
|
- MIT
|
218
224
|
metadata:
|
219
|
-
bug_tracker_uri: https://github.com/mishina2228/
|
220
|
-
changelog_uri: https://github.com/mishina2228/
|
221
|
-
homepage_uri: https://github.com/mishina2228/
|
225
|
+
bug_tracker_uri: https://github.com/mishina2228/nova_git_stats/issues
|
226
|
+
changelog_uri: https://github.com/mishina2228/nova_git_stats/blob/master/CHANGELOG.md
|
227
|
+
homepage_uri: https://github.com/mishina2228/nova_git_stats
|
222
228
|
rubygems_mfa_required: 'true'
|
223
|
-
source_code_uri: https://github.com/mishina2228/
|
224
|
-
post_install_message:
|
229
|
+
source_code_uri: https://github.com/mishina2228/nova_git_stats/tree/v2.4.2
|
230
|
+
post_install_message:
|
225
231
|
rdoc_options: []
|
226
232
|
require_paths:
|
227
233
|
- lib
|
@@ -236,8 +242,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
236
242
|
- !ruby/object:Gem::Version
|
237
243
|
version: '0'
|
238
244
|
requirements: []
|
239
|
-
rubygems_version: 3.
|
240
|
-
signing_key:
|
245
|
+
rubygems_version: 3.5.11
|
246
|
+
signing_key:
|
241
247
|
specification_version: 4
|
242
248
|
summary: HTML statistics generator from git repository
|
243
249
|
test_files: []
|