Class: RunLoop::App
- Inherits:
-
Object
- Object
- RunLoop::App
- Defined in:
- lib/run_loop/app.rb
Overview
A class for interacting with .app bundles.
Instance Attribute Summary collapse
-
#path ⇒ String
readonly
The path to the app bundle .app.
Instance Method Summary collapse
-
#bundle_identifier ⇒ String
Inspects the app’s Info.plist for the bundle identifier.
-
#calabash_server_version ⇒ Object
Inspects the app’s file for the server version.
-
#executable_name ⇒ String
Inspects the app’s Info.plist for the executable name.
-
#info_plist_path ⇒ Object
Returns the Info.plist path.
-
#initialize(app_bundle_path) ⇒ RunLoop::App
constructor
Creates a new App instance.
-
#sha1 ⇒ Object
Returns the sha1 of the application.
-
#valid? ⇒ Boolean
Is this a valid app?.
Constructor Details
#initialize(app_bundle_path) ⇒ RunLoop::App
Note:
The ‘app_bundle_path` is expanded during initialization.
Creates a new App instance.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/run_loop/app.rb', line 15 def initialize(app_bundle_path) @path = File.(app_bundle_path) if !App.valid?(app_bundle_path) raise ArgumentError, %Q{App does not exist at path or is not an app bundle. #{app_bundle_path} Bundle must: 1. be a directory that exists, 2. have a .app extension, 3. and contain an Info.plist. } end end |
Instance Attribute Details
#path ⇒ String (readonly)
Returns The path to the app bundle .app.
7 8 9 |
# File 'lib/run_loop/app.rb', line 7 def path @path end |
Instance Method Details
#bundle_identifier ⇒ String
Inspects the app’s Info.plist for the bundle identifier.
68 69 70 71 72 73 74 |
# File 'lib/run_loop/app.rb', line 68 def bundle_identifier identifier = plist_buddy.plist_read('CFBundleIdentifier', info_plist_path) unless identifier raise "Expected key 'CFBundleIdentifier' in '#{info_plist_path}'" end identifier end |
#calabash_server_version ⇒ Object
Inspects the app’s file for the server version
89 90 91 92 93 94 95 96 |
# File 'lib/run_loop/app.rb', line 89 def calabash_server_version version = nil executables.each do |executable| version = strings(executable).server_version break if version end version end |
#executable_name ⇒ String
Inspects the app’s Info.plist for the executable name.
80 81 82 83 84 85 86 |
# File 'lib/run_loop/app.rb', line 80 def executable_name identifier = plist_buddy.plist_read('CFBundleExecutable', info_plist_path) unless identifier raise "Expected key 'CFBundleExecutable' in '#{info_plist_path}'" end identifier end |
#info_plist_path ⇒ Object
Returns the Info.plist path.
60 61 62 |
# File 'lib/run_loop/app.rb', line 60 def info_plist_path @info_plist_path ||= File.join(path, 'Info.plist') end |
#sha1 ⇒ Object
Returns the sha1 of the application.
128 129 130 |
# File 'lib/run_loop/app.rb', line 128 def sha1 RunLoop::Directory.directory_digest(path) end |
#valid? ⇒ Boolean
Is this a valid app?
44 45 46 |
# File 'lib/run_loop/app.rb', line 44 def valid? App.valid?(path) end |