lib/calabash/android/environment.rb in calabash-2.0.0.pre10 vs lib/calabash/android/environment.rb in calabash-2.0.0.pre11
- old
+ new
@@ -1,8 +1,13 @@
require 'rexml/document'
require 'timeout'
-require 'luffa'
+
+# We sometimes want to require a Ruby gem without having our IDE auto-complete
+# using it. For example awesome_print adds a ton of methods to 'Object'
+alias :cal_require_without_documentation :require
+cal_require_without_documentation 'luffa'
+
require 'timeout'
if RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/
require 'win32/registry'
end
@@ -22,9 +27,17 @@
# You can control the value of this variable by setting the `CAL_ENDPOINT`
# variable.
#
# @todo Maybe rename this to CAL_SERVER_URL or CAL_SERVER?
DEVICE_ENDPOINT = URI.parse((variable('CAL_ENDPOINT') || 'http://127.0.0.1:34777'))
+
+ # A URI that points to the helper server on the device.
+ #
+ # The default value is 'http://localhost:34778'.
+ #
+ # You can control the value of this variable by setting the `CAL_HELPER_ENDPOINT`
+ # variable.
+ DEVICE_HELPER_ENDPOINT = URI.parse((variable('CAL_HELPER_ENDPOINT') || 'http://127.0.0.1:34778'))
private
def self.set_android_dependencies(android_dependencies)
@@android_dependencies = android_dependencies