Sha256: 29fc7bc2c83273afa40f51d42f3ab6f9927f89a017f50a278c2a7e54db98559a

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

require "bundler/setup"
<%- if config.dig(:generate, :code_climate) -%>
require "simplecov"
SimpleCov.start

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

Dir[File.join(File.dirname(__FILE__), "support/shared_contexts/**/*.rb")].each do |file|
  require file
end

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

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

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

  $stdout = File.new("/dev/null", "w") if ENV["SUPPRESS_STDOUT"] == "enabled"
  $stderr = File.new("/dev/null", "w") if ENV["SUPPRESS_STDERR"] == "enabled"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gemsmith-12.4.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-12.3.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-12.2.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-12.1.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
gemsmith-12.0.0 lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt