Sha256: 2cd6b1158df4d09c9703ec4349fea9b5455e4ca6819df1145e613d1e8ca6a128

Contents?: true

Size: 637 Bytes

Versions: 8

Compression:

Stored size: 637 Bytes

Contents

require "bundler/setup"
Bundler.require
require 'rspec/autorun'

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}

SitemapGenerator.verbose = false

RSpec.configure do |config|
  config.mock_with :mocha
  config.include(FileMacros)
  config.include(XmlMacros)

  # Pass :focus option to +describe+ or +it+ to run that spec only
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.filter_run :focus => true
  config.run_all_when_everything_filtered = true
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
sitemap_generator-4.0.alpha spec/spec_helper.rb
sitemap_generator-3.4 spec/spec_helper.rb
sitemap_generator-3.3 spec/spec_helper.rb
sitemap_generator-3.2.1 spec/spec_helper.rb
sitemap_generator-3.2 spec/spec_helper.rb
sitemap_generator-3.1.1 spec/spec_helper.rb
sitemap_generator-3.1.0 spec/spec_helper.rb
sitemap_generator-3.0.0 spec/spec_helper.rb