Class/Module Index [+]

Quicksearch

RSpec

www.ruby-doc.org/stdlib/libdoc/optparse/rdoc/classes/OptionParser.html

Public Class Methods

clear_remaining_example_groups() click to toggle source
# File lib/rspec/core.rb, line 70
def self.clear_remaining_example_groups
  world.example_groups.clear
end
configuration() click to toggle source
# File lib/rspec/core.rb, line 62
def self.configuration
  @configuration ||= RSpec::Core::Configuration.new
end
configure() click to toggle source
# File lib/rspec/core.rb, line 66
def self.configure
  yield configuration if block_given?
end
deprecate(method, alternate_method=nil, version=nil) click to toggle source
# File lib/rspec/core/deprecation.rb, line 4
def deprecate(method, alternate_method=nil, version=nil)
  version_string = version ? "rspec-#{version}" : "a future version of RSpec"

  message = *****************************************************************DEPRECATION WARNING: you are using deprecated behaviour that willbe removed from #{version_string}.#{caller(0)[2]}* #{method} is deprecated.
  if alternate_method
    message << * please use #{alternate_method} instead.
  end

  message << "*****************************************************************"
  warn_deprecation(message)
end
wants_to_quit() click to toggle source
# File lib/rspec/core.rb, line 50
def self.wants_to_quit
  world.wants_to_quit
end
wants_to_quit=(maybe) click to toggle source
# File lib/rspec/core.rb, line 54
def self.wants_to_quit=(maybe)
  world.wants_to_quit=(maybe)
end
warn_deprecation(message) click to toggle source
# File lib/rspec/core/deprecation.rb, line 27
def warn_deprecation(message)
  send :warn, message
end
world() click to toggle source
# File lib/rspec/core.rb, line 58
def self.world
  @world ||= RSpec::Core::World.new
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.