emerge 0.7.6 → 0.7.7
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/lib/reaper/code_deleter.rb +39 -12
- data/lib/utils/github.rb +2 -1
- data/lib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1770b70a27551cc234f8dceca632c4b5314458fe18f1e4a58eadbf694fe8dc52
|
4
|
+
data.tar.gz: 2e1b0461aa6cd601428b53a6ea00c350566c72f74c20cf4d4c8a55d490c716fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24944c104d7e639b94786e685e0311be1adeaeb045583d56ef12e91c657be087ca53a9949c445c98f15880ac398d6d0eba961752e42d1cde0feba38cc08be67f
|
7
|
+
data.tar.gz: 71952252c5255b03bcfbae065c8d76c7a3ee53fa1c42756117ee20c78b879248ec7f02788740d8b2e6a18c47ea8ad43439abcbfb82fe2f73e7eda98a39a2ad22
|
data/lib/reaper/code_deleter.rb
CHANGED
@@ -17,7 +17,9 @@ module EmergeCLI
|
|
17
17
|
types.each do |class_info|
|
18
18
|
Logger.info "Deleting #{class_info['class_name']}"
|
19
19
|
|
20
|
-
|
20
|
+
type_name_result = parse_type_name(class_info['class_name'])
|
21
|
+
type_name = type_name_result[:type_name]
|
22
|
+
package_name = type_name_result[:package_name]
|
21
23
|
Logger.debug "Parsed type name: #{type_name}"
|
22
24
|
|
23
25
|
# Remove line number from path if present
|
@@ -42,7 +44,7 @@ module EmergeCLI
|
|
42
44
|
paths.each do |path|
|
43
45
|
Logger.debug "Processing path: #{path}"
|
44
46
|
@profiler.measure('delete_type_from_file') do
|
45
|
-
delete_type_from_file(path, type_name)
|
47
|
+
delete_type_from_file(path, type_name, package_name)
|
46
48
|
end
|
47
49
|
end
|
48
50
|
|
@@ -71,9 +73,11 @@ module EmergeCLI
|
|
71
73
|
private
|
72
74
|
|
73
75
|
def parse_type_name(type_name)
|
76
|
+
package_name = nil
|
77
|
+
|
74
78
|
# Remove first module prefix for Swift types if present
|
75
79
|
if @platform == 'ios' && type_name.include?('.')
|
76
|
-
type_name.split('.')[1..].join('.')
|
80
|
+
parsed_type_name = type_name.split('.')[1..].join('.')
|
77
81
|
# For Android, strip package name and just use the class name
|
78
82
|
elsif @platform == 'android' && type_name.include?('.')
|
79
83
|
# rubocop:disable Layout/LineLength
|
@@ -81,22 +85,31 @@ module EmergeCLI
|
|
81
85
|
# rubocop:enable Layout/LineLength
|
82
86
|
has_nested_class = type_name.include?('$')
|
83
87
|
parts = type_name.split
|
88
|
+
|
84
89
|
if parts.length == 0
|
85
|
-
type_name
|
90
|
+
parsed_type_name = type_name
|
86
91
|
elsif has_nested_class && parts.length > 1
|
87
|
-
|
92
|
+
full_class_path = parts[0].split('.')
|
93
|
+
base_name = full_class_path.last
|
88
94
|
nested_class = parts[1].match(/\$(.+)/).captures.first
|
89
|
-
"#{base_name}.#{nested_class}"
|
95
|
+
parsed_type_name = "#{base_name}.#{nested_class}"
|
96
|
+
# Extract package name (everything except the last part)
|
97
|
+
package_name = full_class_path[0...-1].join('.') if full_class_path.length > 1
|
90
98
|
else
|
91
|
-
parts[0].split('.')
|
99
|
+
full_class_path = parts[0].split('.')
|
100
|
+
parsed_type_name = full_class_path.last
|
101
|
+
# Extract package name (everything except the last part)
|
102
|
+
package_name = full_class_path[0...-1].join('.') if full_class_path.length > 1
|
92
103
|
end
|
93
104
|
else
|
94
|
-
type_name
|
105
|
+
parsed_type_name = type_name
|
95
106
|
end
|
107
|
+
|
108
|
+
{ type_name: parsed_type_name, package_name: package_name }
|
96
109
|
end
|
97
110
|
|
98
|
-
def delete_type_from_file(path, type_name)
|
99
|
-
full_path = resolve_file_path(path)
|
111
|
+
def delete_type_from_file(path, type_name, marker = nil)
|
112
|
+
full_path = resolve_file_path(path, marker)
|
100
113
|
return unless full_path
|
101
114
|
|
102
115
|
Logger.debug "Processing file: #{full_path}"
|
@@ -221,7 +234,7 @@ module EmergeCLI
|
|
221
234
|
end
|
222
235
|
end
|
223
236
|
|
224
|
-
def resolve_file_path(path)
|
237
|
+
def resolve_file_path(path, marker = nil)
|
225
238
|
# If path starts with /, treat it as relative to project root
|
226
239
|
if path.start_with?('/')
|
227
240
|
path = path[1..] # Remove leading slash
|
@@ -242,7 +255,21 @@ module EmergeCLI
|
|
242
255
|
Logger.warn "Could not find #{path} in project"
|
243
256
|
return nil
|
244
257
|
elsif matching_files.length > 1
|
245
|
-
Logger.
|
258
|
+
Logger.debug "Found multiple matches for #{path}: #{matching_files.join(', ')}"
|
259
|
+
|
260
|
+
# If a marker is provided, use it to select the file
|
261
|
+
# For Android, this is the package name declaration of the type
|
262
|
+
if marker
|
263
|
+
Logger.debug "Using marker #{marker} to select file"
|
264
|
+
marker_files = matching_files.select { |file| File.read(file).include?(marker) }
|
265
|
+
if marker_files.length >= 1
|
266
|
+
Logger.info "Found #{marker_files.length} files with marker #{marker} for #{path}, using first match"
|
267
|
+
return marker_files.first
|
268
|
+
else
|
269
|
+
Logger.warn "No files found with marker #{marker} for #{path}"
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
246
273
|
Logger.warn "Using first match: #{matching_files.first}"
|
247
274
|
end
|
248
275
|
|
data/lib/utils/github.rb
CHANGED
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: emerge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emerge Tools
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async-http
|