Module: Cypress

Extended by:
ActiveSupport::Autoload
Defined in:
lib/cypress.rb,
lib/cypress/runner.rb,
lib/cypress/server.rb,
lib/cypress/version.rb,
lib/cypress/configuration.rb,
lib/cypress/scenario_bank.rb,
lib/cypress/callback_server.rb

Defined Under Namespace

Classes: CallbackServer, Configuration, Runner, ScenarioBank, Server

Constant Summary collapse

VERSION =
"0.1".freeze

Class Method Summary collapse

Class Method Details

.configurationObject



12
13
14
# File 'lib/cypress.rb', line 12

def self.configuration
  @configuration ||= Configuration.new
end

.configure {|configuration| ... } ⇒ Object

Yields:



16
17
18
# File 'lib/cypress.rb', line 16

def self.configure(&block)
  yield configuration if block_given?
end