ruby_osx_app

This gem operates on Mac OSX Applications to retrieve information from them.

Example usage

Into Gemfile put:

gem 'ruby_osx_app'

Get version from app:

require 'osx_app'
osx_app = OsxApp.new('/Applications/1Password.app')
osx_app.version # => '4.0.3'
osx_app.version_major # => '4'
osx_app.minimum_osx # => '10.8.4'

You can initialize simpler:

osx_app = OsxApp.new('1Password.app')

Or even more simpler:

osx_app = OsxApp.new('1Password')

You can also get info from custom path app:

osx_app = OsxApp.new('/Volumes/ExternalDisk/Applications/1Password.app')

Contributing to ruby_osx_app

Copyright © 2013 Marcin Nowicki. See LICENSE.txt for further details.