A gem for parsing info.plist in Apple ipa.
First of all, make sure the 'unzip' command is available.
apt-get install unzip (Linux)
brew install unzip (Mac)
Add this line to your application's Gemfile:
gem 'rubyzip'
gem 'plist'
And then execute:
$ bundle install
info_plist = InfoPlistParser::AttrParser.new(IPA_PATH)
info_plist.version
info_plist.app_name
info_plist.bundle_identifier
info_plist.target_os_version
info_plist.minimum_os_version
info_plist.read_icon_file(saved_file_path)
- Fork it ( https://github.com/[my-github-username]/info_plist_parser/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request