Module: Calabash::Cucumber

Includes:
Logging
Included in:
LocalTest
Defined in:
lib/calabash-cucumber.rb,
lib/calabash-cucumber/map.rb,
lib/calabash-cucumber/uia.rb,
lib/calabash-cucumber/core.rb,
lib/calabash-cucumber/device.rb,
lib/calabash-cucumber/version.rb,
lib/calabash-cucumber/connection.rb,
lib/calabash-cucumber/ipad_1x_2x.rb,
lib/calabash-cucumber/operations.rb,
lib/calabash-cucumber/date_picker.rb,
lib/calabash-cucumber/http_helpers.rb,
lib/calabash-cucumber/wait_helpers.rb,
lib/calabash-cucumber/query_helpers.rb,
lib/calabash-cucumber/tests_helpers.rb,
lib/calabash-cucumber/utils/logging.rb,
lib/calabash-cucumber/utils/xctools.rb,
lib/calabash-cucumber/failure_helpers.rb,
lib/calabash-cucumber/ios7_operations.rb,
lib/calabash-cucumber/keyboard_helpers.rb,
lib/calabash-cucumber/keychain_helpers.rb,
lib/calabash-cucumber/playback_helpers.rb,
lib/calabash-cucumber/rotation_helpers.rb,
lib/calabash-cucumber/utils/plist_buddy.rb,
lib/calabash-cucumber/connection_helpers.rb,
lib/calabash-cucumber/status_bar_helpers.rb,
lib/calabash-cucumber/environment_helpers.rb,
lib/calabash-cucumber/launch/simulator_helper.rb,
lib/calabash-cucumber/launch/simulator_launcher.rb,
lib/calabash-cucumber/utils/simulator_accessibility.rb

Overview

base sub module todo in 1.0 release consider changing Cucumber module to iOS module

Defined Under Namespace

Modules: ConnectionHelpers, Core, DatePicker, EnvironmentHelpers, FailureHelpers, HTTPHelpers, IOS7Operations, IPad, KeyboardHelpers, KeychainHelpers, Logging, Map, Operations, PlaybackHelpers, PlistBuddy, QueryHelpers, RotationHelpers, SimulatorAccessibility, SimulatorHelper, StatusBarHelpers, TestsHelpers, UIA, WaitHelpers, XcodeTools Classes: Connection, Device, InstrumentsActions, Launcher, PlaybackActions, SimulatorLauncher, Version

Constant Summary collapse

VERSION =
'0.9.169'
MIN_SERVER_VERSION =
'0.9.169'

Constants included from Logging

Logging::CALABASH_NO_DEPRECATION

Class Method Summary collapse

Methods included from Logging

#_deprecated, #calabash_info, #calabash_warn, #debug_logging?, #full_console_logging?, #no_deprecation_warnings?

Class Method Details

.const_missing(const_name) ⇒ Object

Raises:

  • (NameError)


7
8
9
10
11
12
13
# File 'lib/calabash-cucumber/version.rb', line 7

def self.const_missing(const_name)
  if const_name == :FRAMEWORK_VERSION
    _deprecated('0.9.169', 'FRAMEWORK_VERSION has been deprecated - there is no replacement', :warn)
    return nil
  end
  raise(NameError, "uninitialized constant Calabash::Cucumber::#{const_name}")
end