deprecations_detector 0.2.1 → 0.2.2
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2416996b167428bda291cb71e1a98182df8173d04bf5ecd582415e3ec722da82
|
4
|
+
data.tar.gz: e447d1e72d4ee7cbd7d315afab5a0f054b4e1f7715ead8cf092f065f4da21111
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec7fa2a879fb9c210947bcbeaaed42dc06a1bddb6b74c5fb323d0e2f8486942457d19361e6b949573574c60dc4c099550a330edddf3b21bfa6015a66379f05e9
|
7
|
+
data.tar.gz: 8cbbfd1d57012bd3198917a3996df0acadd6457b839dfa277f8e589d31d9a4d8e7534231d0b8d4d4da1d7f377d75309346046459483615db677894ae7c0bed0e
|
@@ -96,7 +96,13 @@ module DeprecationsDetector
|
|
96
96
|
grouped_files = []
|
97
97
|
|
98
98
|
groups.each do |deprecation_message|
|
99
|
-
grouped[deprecation_message] = files.select
|
99
|
+
grouped[deprecation_message] = files.select do |source_file, lines|
|
100
|
+
lines.detect do |line, examples|
|
101
|
+
examples.detect do |example|
|
102
|
+
example[:deprecation_message] == deprecation_message
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
100
106
|
grouped_files += grouped[deprecation_message].keys
|
101
107
|
end
|
102
108
|
if !groups.empty? && !(other_files = files.reject { |source_file| grouped_files.include?(source_file) }).empty?
|
@@ -48,7 +48,7 @@ module DeprecationsDetector
|
|
48
48
|
file_path = result[1] # "#{Dir.pwd}#{result[1]}"
|
49
49
|
|
50
50
|
@deprecation_matrix[file_path] ||= {}
|
51
|
-
@deprecation_matrix[file_path][result[2].to_i - 1] = message
|
51
|
+
@deprecation_matrix[file_path][result[2].to_i - 1] = /(.*)\(called.*\)/m.match(message)[1]
|
52
52
|
end
|
53
53
|
|
54
54
|
def start
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deprecations_detector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniele Palombo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -248,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
248
248
|
- !ruby/object:Gem::Version
|
249
249
|
version: '0'
|
250
250
|
requirements: []
|
251
|
-
rubygems_version: 3.3.
|
251
|
+
rubygems_version: 3.3.7
|
252
252
|
signing_key:
|
253
253
|
specification_version: 4
|
254
254
|
summary: A tool to display deprecations in a simple way on a single HTML page.
|