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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae04588f63b14ad87eb107872f2b2c7207b54d344e3b9f0d87915042568bf94f
4
- data.tar.gz: 502237eec8ad7452fc11a55a014cc4de8cfb96ac86e7bae6566a0605a6729c13
3
+ metadata.gz: 1770b70a27551cc234f8dceca632c4b5314458fe18f1e4a58eadbf694fe8dc52
4
+ data.tar.gz: 2e1b0461aa6cd601428b53a6ea00c350566c72f74c20cf4d4c8a55d490c716fe
5
5
  SHA512:
6
- metadata.gz: bc5457c9758300e751b86a688f10be6b784d3c0d714b8338b9dfb970629b21c8610985f88f08cab3bff9f68872f8c928d8f7ebd43f62a7376172eae859f15565
7
- data.tar.gz: 651182cbe2b7e5a294ecdc126d41081b852857867e024197290d0764342c9aa5c14ad04abba2c91d3304eab04590c222807734af335bdf23b5cac4d48bcec5cd
6
+ metadata.gz: 24944c104d7e639b94786e685e0311be1adeaeb045583d56ef12e91c657be087ca53a9949c445c98f15880ac398d6d0eba961752e42d1cde0feba38cc08be67f
7
+ data.tar.gz: 71952252c5255b03bcfbae065c8d76c7a3ee53fa1c42756117ee20c78b879248ec7f02788740d8b2e6a18c47ea8ad43439abcbfb82fe2f73e7eda98a39a2ad22
@@ -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
- type_name = parse_type_name(class_info['class_name'])
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
- base_name = parts[0].split('.').last
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('.').last
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.warn "Found multiple matches for #{path}: #{matching_files.join(', ')}"
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
@@ -50,7 +50,8 @@ module EmergeCLI
50
50
  end
51
51
 
52
52
  def self.previous_sha
53
- Git.previous_sha
53
+ return unless push?
54
+ github_event_data[:before]
54
55
  end
55
56
 
56
57
  def self.github_event_data
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module EmergeCLI
2
- VERSION = '0.7.6'.freeze
2
+ VERSION = '0.7.7'.freeze
3
3
  end
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.6
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-05 00:00:00.000000000 Z
11
+ date: 2025-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http