I need to exclude specific keys found in an Info.plist for my app if they are found in another Hash. Currently I can access individual keys in Info.plist like this
setting4Str = `/usr/libexec/PlistBuddy -c \"print :MySettingsDict:setting4" {settings_file}`
and I can get the "setting 4 text" string set at this key in the plist dictionary...
However, I want to be able to iterate over all keys of this MysettingsDict. Does anyone have a method to convert an iOS XML plist to a ruby Dictionary?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>My App</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.company.appname</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleLocalizations</key>
<array>
<string>en</string>
<string>de</string>
<string>it</string>
<string>fr</string>
<string>ru</string>
<string>es</string>
</array>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.company.mySchemeName</string>
<key>CFBundleURLSchemes</key>
<array>
<string>mySchemeName</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.3.15.04170</string>
<key>Internal version</key>
<string>1.3.15.04170</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MysettingsDict</key>
<dict>
<key>setting1</key>
<false/>
<key>setting2</key>
<false/>
<key>setting3</key>
<false/>
<key>setting4</key>
<string>setting 4 text</string>
<key>setting5</key>
<string>setting 5 text</string>
<key>setting6</key>
<false/>
<key>setting7</key>
...