Sha256: c6065990ff42c5fbeee3a10a628634d9c75892a12b3f63ee6ba0a585ff1ae5c9

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 KB

Contents

require "bundler/setup"
Bundler.require :tools

<%- if config.dig(:generate, :simple_cov) -%>
require "simplecov"
SimpleCov.start { enable_coverage :branch }
<%- end -%>

<%- unless config.dig(:generate, :engine) -%>
require "<%= config.dig(:gem, :path) %>"
<%- end -%>

Dir[File.join(__dir__, "support", "shared_contexts", "**/*.rb")].sort.each { |path| require path }

RSpec.configure do |config|
  config.color = true
  config.disable_monkey_patching!
  config.example_status_persistence_file_path = "./tmp/rspec-examples.txt"
  config.filter_run_when_matching :focus
  config.formatter = ENV["CI"] == "true" ? :progress : :documentation
  config.order = :random
  config.shared_context_metadata_behavior = :apply_to_host_groups
  config.warnings = true

  config.expect_with :rspec do |expectations|
    expectations.syntax = :expect
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_doubled_constant_names = true
    mocks.verify_partial_doubles = true
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gemsmith-15.2.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-15.1.1 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-15.1.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-15.0.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-14.11.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-14.10.1 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt