Sha256: 7e6e0ec985c5f40681c85678ec2c2b1d1e3019bf7369b78d761bbba3c902d4e9
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
require 'rspec/core/load_path' require 'rspec/core/deprecation' require 'rspec/core/mocking/with_absolutely_nothing' require 'rspec/core/around_proxy' require 'rspec/core/world' require 'rspec/core/configuration' require 'rspec/core/command_line_options' require 'rspec/core/runner' require 'rspec/core/example' require 'rspec/core/kernel_extensions' require 'rspec/core/shared_example_group' require 'rspec/core/example_group_subject' require 'rspec/core/example_group' require 'rspec/core/formatters' require 'rspec/core/backward_compatibility' require 'rspec/core/version' module Rspec module Core def self.install_directory @install_directory ||= File.expand_path(File.dirname(__FILE__)) end def self.configuration @configuration ||= Rspec::Core::Configuration.new end def self.configure Rspec.deprecate('Rspec::Core.configure', 'Rspec.configure', '2.0.0') yield configuration if block_given? end def self.world @world ||= Rspec::Core::World.new end end def self.configure yield Core.configuration if block_given? end end # TODO - make this configurable with default 'on' require 'rspec/expectations'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec-core-2.0.0.beta.3 | lib/rspec/core.rb |
rspec-core-2.0.0.beta.2 | lib/rspec/core.rb |