This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Prompt: Parse pricing documents → Monta price-group XLSX (complete standalone spec) | |
| **CRITICAL REQUIREMENT**: The output MUST have EXACTLY these 14 columns in this EXACT order: | |
| 1. Tariff | |
| 2. Tariff ID | |
| 3. min. Power | |
| 4. max. Power | |
| 5. Power Type | |
| 6. CountryCode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'xcodeproj' | |
| project_path = ARGV[0] | |
| project = Xcodeproj::Project.open(project_path) | |
| project.targets.each do |target| | |
| # suppress warnings | |
| if [ | |
| "Configs", |