module Calabash::Cucumber::Dylibs
@!visibility private
Public Class Methods
device_dylib_basename()
click to toggle source
@!visibility private
# File lib/calabash-cucumber/dylibs.rb, line 18 def self.device_dylib_basename "libCalabashARM.dylib" end
path_to_device_dylib()
click to toggle source
@!visibility private
# File lib/calabash-cucumber/dylibs.rb, line 23 def self.path_to_device_dylib File.join(self.dylib_dir, self.device_dylib_basename) end
path_to_sim_dylib()
click to toggle source
@!visibility private
# File lib/calabash-cucumber/dylibs.rb, line 13 def self.path_to_sim_dylib File.join(self.dylib_dir, self.sim_dylib_basename) end
sim_dylib_basename()
click to toggle source
@!visibility private
# File lib/calabash-cucumber/dylibs.rb, line 8 def self.sim_dylib_basename "libCalabashSim.dylib" end
Private Class Methods
dylib_dir()
click to toggle source
@!visibility private
# File lib/calabash-cucumber/dylibs.rb, line 30 def self.dylib_dir dirname = File.dirname(__FILE__) File.expand_path(File.join(dirname, "..", "..", "dylibs")) end