kolekti 1.1.3 → 5.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: beffd10226187b16e331b7582995bb68f2faac91
4
- data.tar.gz: 37962ead0b46706223b79073f2b6605b2a1ae070
3
+ metadata.gz: 2bad934fc878a5bd554052fe508328fec94eec24
4
+ data.tar.gz: 22d259049f95f8fd89295ec6b353bfe6ef04fe49
5
5
  SHA512:
6
- metadata.gz: 452cf8bb1176dcdc3f90706a1e74a3a5bc855abd15f1162c331c1cca68d851b901e50ebf3b35e105eb86b753b6e377febc1c06c28e48592ac7f086a1652bd4a9
7
- data.tar.gz: 2e906faba65ededf5ba5af58f42904810eaf28cc0b442eb159c0fe4eb5296d4c156cc17e0034f99624632714d62b25ae667105722fa0176be0a0635164c7c8b9
6
+ metadata.gz: 52a263dbc4c1afee1d171cd29982d81a288184435005d285e646ccb5030e019e43c2a4f3ef1a3cc3995849ae6267efddbd28e761127ee6b6e9bfc026a8457896
7
+ data.tar.gz: 98e95279554a403c75f8b772be943362181349f7a937c874bf73f41a2d3c11bad45016f60b8274ea39f3541ec221cbb42d5e0e52bd58cef7713e647711d39024
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.0
1
+ 2.4.1
data/CHANGELOG.md ADDED
@@ -0,0 +1,72 @@
1
+ # Revision history for Kolekti gem
2
+
3
+ The Kolekti gem provides a basic API for KalibroProcessor's collectors
4
+
5
+ ## Unreleased
6
+
7
+ ## v5.0.0 - 05/03/2018
8
+
9
+ * Update to Ruby 2.4.1
10
+ * Restrict code climate test reporter previous to 1.0
11
+ * Development on Mezuro's single repository
12
+
13
+ ## v1.1.3 - 15/04/2016
14
+
15
+ * Update Collector#collect_metrics signature
16
+ * Fix requiring memory persistence strategy alone
17
+
18
+
19
+ ## v1.1.2 - 06/04/2016
20
+
21
+ * Add missing argument persistence_strategy to Parser#parse
22
+
23
+
24
+ ## v1.1.1 - 06/04/2016
25
+
26
+ * Add missing argument metric_configuration to Parser#parse
27
+
28
+
29
+ ## v1.1.0 - 06/04/2016
30
+
31
+ * Introduce the Parser class
32
+
33
+
34
+ ## v1.0.2 - 30/03/2016
35
+
36
+ * Update Ruby to 2.3.0
37
+ * Update Kalibro Client to version 4
38
+
39
+
40
+ ## v1.0.1 - 23/03/2016
41
+
42
+ * Fix collector selection logic for metrics and correct tests
43
+
44
+ ## v1.0.0 - 01/03/2016
45
+
46
+ * Only register collectors if they are available and not already registered
47
+
48
+ ## v0.0.2 - 24/02/2016
49
+
50
+ * Add backport for Array#to_h on ruby-2.0.0-p598
51
+
52
+ ## v0.0.1 - 19/02/2016
53
+
54
+ * And the Mezuro team said: "Let there be parsers!"
55
+
56
+ ---
57
+
58
+ Kolekti. Copyright (C) 2015-2018 The Mezuro Team
59
+
60
+ This program is free software: you can redistribute it and/or modify it under
61
+ the terms of the GNU Affero General Public License as published by the Free
62
+ Software Foundation, either version 3 of the License, or (at your option) any
63
+ later version.
64
+
65
+ This program is distributed in the hope that it will be useful, but WITHOUT
66
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
67
+ FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
68
+ details.
69
+
70
+ You should have received a copy of the GNU Affero General Public License along
71
+ with this program. If not, see <http://www.gnu.org/licenses/>.
72
+
data/kolekti.gemspec CHANGED
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'kolekti/version'
4
+ version = File.read(File.expand_path("../../VERSION", __dir__)).strip
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "kolekti"
8
- spec.version = Kolekti::VERSION
8
+ spec.version = version
9
9
  spec.authors = ["Daniel Miranda",
10
10
  "Diego Araújo",
11
11
  "Eduardo Araújo",
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  spec.summary = %q{Kolekti is a code metric results parser framework.}
20
20
  spec.description = %q{Kolekti is a code metric results parser framework. You can use it whenever you want structured unique output for different metric collectors.}
21
- spec.homepage = "https://github.com/mezuro/kolekti"
21
+ spec.homepage = "https://gitlab.com/mezuro/mezuro/tree/master/kalibro/kolekti"
22
22
 
23
23
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
24
  spec.bindir = "exe"
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
34
34
  spec.add_development_dependency "mocha", "~> 1.1.0"
35
35
  spec.add_development_dependency "simplecov"
36
36
  spec.add_development_dependency "factory_girl", "~> 4.5.0"
37
- spec.add_development_dependency "codeclimate-test-reporter"
37
+ spec.add_development_dependency "codeclimate-test-reporter", "~> 0.6.0"
38
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kolekti
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Miranda
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2016-04-15 00:00:00.000000000 Z
14
+ date: 2018-03-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: kalibro_client
@@ -129,16 +129,16 @@ dependencies:
129
129
  name: codeclimate-test-reporter
130
130
  requirement: !ruby/object:Gem::Requirement
131
131
  requirements:
132
- - - ">="
132
+ - - "~>"
133
133
  - !ruby/object:Gem::Version
134
- version: '0'
134
+ version: 0.6.0
135
135
  type: :development
136
136
  prerelease: false
137
137
  version_requirements: !ruby/object:Gem::Requirement
138
138
  requirements:
139
- - - ">="
139
+ - - "~>"
140
140
  - !ruby/object:Gem::Version
141
- version: '0'
141
+ version: 0.6.0
142
142
  description: Kolekti is a code metric results parser framework. You can use it whenever
143
143
  you want structured unique output for different metric collectors.
144
144
  email:
@@ -155,7 +155,7 @@ files:
155
155
  - ".ruby-gemset"
156
156
  - ".ruby-version"
157
157
  - ".travis.yml"
158
- - CHANGELOG.rdoc
158
+ - CHANGELOG.md
159
159
  - COPYING
160
160
  - COPYING.LESSER
161
161
  - Gemfile
@@ -172,7 +172,7 @@ files:
172
172
  - lib/kolekti/persistence_strategy.rb
173
173
  - lib/kolekti/runner.rb
174
174
  - lib/kolekti/version.rb
175
- homepage: https://github.com/mezuro/kolekti
175
+ homepage: https://gitlab.com/mezuro/mezuro/tree/master/kalibro/kolekti
176
176
  licenses:
177
177
  - LGPLv3
178
178
  metadata: {}
@@ -192,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
192
  version: '0'
193
193
  requirements: []
194
194
  rubyforge_project:
195
- rubygems_version: 2.5.1
195
+ rubygems_version: 2.6.11
196
196
  signing_key:
197
197
  specification_version: 4
198
198
  summary: Kolekti is a code metric results parser framework.
data/CHANGELOG.rdoc DELETED
@@ -1,62 +0,0 @@
1
- = Revision history for Kolekti gem
2
-
3
- The Kolekti gem provides a basic API for KalibroProcessor's collectors
4
-
5
- == Unreleased
6
-
7
- == v1.1.3 - 15/04/2016
8
-
9
- * Update Collector#collect_metrics signature
10
- * Fix requiring memory persistence strategy alone
11
-
12
- == v1.1.2 - 06/04/2016
13
-
14
- * Add missing argument persistence_strategy to Parser#parse
15
-
16
- == v1.1.1 - 06/04/2016
17
-
18
- * Add missing argument metric_configuration to Parser#parse
19
-
20
- == v1.1.0 - 06/04/2016
21
-
22
- * Introduce the Parser class
23
-
24
- == v1.0.2 - 30/03/2016
25
-
26
- * Update Ruby to 2.3.0
27
- * Update Kalibro Client to version 4
28
-
29
- == v1.0.1 - 23/03/2016
30
-
31
- Fix collector selection logic for metrics and correct tests
32
-
33
- == v1.0.0 - 01/03/2016
34
-
35
- Only register collectors if they are available and not already registered
36
-
37
- == v0.0.2 - 24/02/2016
38
-
39
- Add backport for Array#to_h on ruby-2.0.0-p598
40
-
41
- == v0.0.1 - 19/02/2016
42
-
43
- And the Mezuro team said: "Let there be parsers!"
44
-
45
- ===
46
-
47
- Kolekti.
48
- Copyright (C) 2015 The Mezuro Team
49
-
50
- This program is free software: you can redistribute it and/or modify
51
- it under the terms of the GNU Affero General Public License as published by
52
- the Free Software Foundation, either version 3 of the License, or
53
- (at your option) any later version.
54
-
55
- This program is distributed in the hope that it will be useful,
56
- but WITHOUT ANY WARRANTY; without even the implied warranty of
57
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
58
- GNU Affero General Public License for more details.
59
-
60
- You should have received a copy of the GNU Affero General Public License
61
- along with this program. If not, see <http://www.gnu.org/licenses/>.
62
-