diggit 2.0.0 → 2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +3 -1
- data/bin/dgit +59 -32
- data/lib/dgit.rb +19 -1
- data/lib/dgit/core.rb +191 -98
- data/lib/dgit/log.rb +62 -0
- data/lib/dgit/plugins.rb +101 -8
- data/lib/dgit/version.rb +19 -1
- data/plugins/addon/db.rb +39 -0
- data/plugins/addon/out.rb +49 -0
- data/plugins/addon/r.rb +35 -0
- data/plugins/analysis/cloc.rb +42 -0
- data/spec/core_spec.rb +36 -6
- data/spec/dgit/plugins/addon/test_addon.rb +18 -0
- data/spec/dgit/plugins/analysis/duplicate_analysis.rb +28 -0
- data/spec/dgit/plugins/analysis/my_module/duplicate_analysis.rb +30 -0
- data/spec/dgit/plugins/analysis/my_module/other_analysis.rb +30 -0
- data/spec/dgit/plugins/analysis/test_analysis.rb +18 -2
- data/spec/dgit/plugins/analysis/test_analysis_with_addon.rb +18 -0
- data/spec/dgit/plugins/analysis/test_analysis_with_error.rb +19 -1
- data/spec/dgit/plugins/join/test_join.rb +18 -0
- data/spec/dgit/plugins/join/test_join_with_addon.rb +18 -0
- data/spec/spec_helper.rb +18 -0
- metadata +39 -17
- data/lib/dgit/formatador.rb +0 -31
@@ -1,4 +1,22 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestAddon < Diggit::Addon
|
4
22
|
def foo
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
# Copyright 2015 Matthieu Foucault <foucaultmatthieu@gmail.com>
|
20
|
+
#
|
21
|
+
|
22
|
+
class DuplicateAnalysis < Diggit::Analysis
|
23
|
+
def run
|
24
|
+
end
|
25
|
+
|
26
|
+
def clean
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
# Copyright 2015 Matthieu Foucault <foucaultmatthieu@gmail.com>
|
20
|
+
#
|
21
|
+
|
22
|
+
module MyModule
|
23
|
+
class DuplicateAnalysis < Diggit::Analysis
|
24
|
+
def run
|
25
|
+
end
|
26
|
+
|
27
|
+
def clean
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
# Copyright 2015 Matthieu Foucault <foucaultmatthieu@gmail.com>
|
20
|
+
#
|
21
|
+
|
22
|
+
module MyModule
|
23
|
+
class OtherAnalysis < Diggit::Analysis
|
24
|
+
def run
|
25
|
+
end
|
26
|
+
|
27
|
+
def clean
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -1,11 +1,27 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestAnalysis < Diggit::Analysis
|
4
22
|
def run
|
5
|
-
@state = "runned"
|
6
23
|
end
|
7
24
|
|
8
25
|
def clean
|
9
|
-
@state = "cleaned"
|
10
26
|
end
|
11
27
|
end
|
@@ -1,4 +1,22 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestAnalysisWithAddon < Diggit::Analysis
|
4
22
|
require_addons "test_addon"
|
@@ -1,8 +1,26 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestAnalysisWithError < Diggit::Analysis
|
4
22
|
def run
|
5
|
-
|
23
|
+
fail "Error!"
|
6
24
|
end
|
7
25
|
|
8
26
|
def clean
|
@@ -1,4 +1,22 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestJoin < Diggit::Join
|
4
22
|
require_analyses 'test_analysis'
|
@@ -1,4 +1,22 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
|
3
21
|
class TestJoinWithAddon < Diggit::Join
|
4
22
|
require_addons 'test_addon'
|
data/spec/spec_helper.rb
CHANGED
@@ -1,4 +1,22 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This file is part of Diggit.
|
4
|
+
#
|
5
|
+
# Diggit is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU Lesser General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# Diggit is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License
|
16
|
+
# along with Diggit. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
# Copyright 2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
|
19
|
+
#
|
2
20
|
require 'coveralls'
|
3
21
|
Coveralls.wear!
|
4
22
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diggit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean-Rémy Falleri
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-07-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rugged
|
@@ -67,20 +67,6 @@ dependencies:
|
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0.2'
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: mongo
|
72
|
-
requirement: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - "~>"
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: '2.0'
|
77
|
-
type: :runtime
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - "~>"
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '2.0'
|
84
70
|
- !ruby/object:Gem::Dependency
|
85
71
|
name: rspec
|
86
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -137,6 +123,34 @@ dependencies:
|
|
137
123
|
- - "~>"
|
138
124
|
- !ruby/object:Gem::Version
|
139
125
|
version: '0.8'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: rubocop
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: pry
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - "~>"
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0.10'
|
147
|
+
type: :development
|
148
|
+
prerelease: false
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - "~>"
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0.10'
|
140
154
|
description: 'The Diggit repository analysis tool is a neat swiss knife to enable
|
141
155
|
the analysis of many Git repositories.
|
142
156
|
|
@@ -147,16 +161,24 @@ executables:
|
|
147
161
|
extensions: []
|
148
162
|
extra_rdoc_files: []
|
149
163
|
files:
|
164
|
+
- CHANGELOG.md
|
150
165
|
- LICENSE
|
151
166
|
- README.md
|
152
167
|
- bin/dgit
|
153
168
|
- lib/dgit.rb
|
154
169
|
- lib/dgit/core.rb
|
155
|
-
- lib/dgit/
|
170
|
+
- lib/dgit/log.rb
|
156
171
|
- lib/dgit/plugins.rb
|
157
172
|
- lib/dgit/version.rb
|
173
|
+
- plugins/addon/db.rb
|
174
|
+
- plugins/addon/out.rb
|
175
|
+
- plugins/addon/r.rb
|
176
|
+
- plugins/analysis/cloc.rb
|
158
177
|
- spec/core_spec.rb
|
159
178
|
- spec/dgit/plugins/addon/test_addon.rb
|
179
|
+
- spec/dgit/plugins/analysis/duplicate_analysis.rb
|
180
|
+
- spec/dgit/plugins/analysis/my_module/duplicate_analysis.rb
|
181
|
+
- spec/dgit/plugins/analysis/my_module/other_analysis.rb
|
160
182
|
- spec/dgit/plugins/analysis/test_analysis.rb
|
161
183
|
- spec/dgit/plugins/analysis/test_analysis_with_addon.rb
|
162
184
|
- spec/dgit/plugins/analysis/test_analysis_with_error.rb
|
data/lib/dgit/formatador.rb
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
require 'formatador'
|
4
|
-
|
5
|
-
class Formatador
|
6
|
-
def self.info_i(str, indent = 1)
|
7
|
-
info("#{'\t' * indent}#{str}")
|
8
|
-
end
|
9
|
-
|
10
|
-
def self.info(str)
|
11
|
-
Formatador.display_line(str)
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.ok_i(str, indent = 1)
|
15
|
-
ok("#{'\t' * indent}#{str}")
|
16
|
-
end
|
17
|
-
|
18
|
-
def self.ok(str)
|
19
|
-
Formatador.display_line("[green]#{str}[/]")
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.error_i(str, indent = 1)
|
23
|
-
error("#{'\t' * indent}#{str}")
|
24
|
-
end
|
25
|
-
|
26
|
-
def self.error(str)
|
27
|
-
Formatador.display_line("[red]#{str}[/]")
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
Log = Formatador
|