Sha256: 9ad29f028ef05bc8fb0a844c77bdeaed160ad80cb7220ea6994001127054055a

Contents?: true

Size: 606 Bytes

Versions: 4

Compression:

Stored size: 606 Bytes

Contents

if ENV['CI'] && !ENV['SKIP_COVERALLS']
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = Coveralls::SimpleCov::Formatter
  SimpleCov.start 'rails' do
    add_filter ['spec', 'lib/generators']
  end
end

require 'pry'
require 'bundler/setup'
require 'graphql_devise'

RSpec.configure do |config|
  # Enable flags like --only-failures and --next-failure
  config.example_status_persistence_file_path = '.rspec_status'

  # Disable RSpec exposing methods globally on `Module` and `main`
  config.disable_monkey_patching!

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
graphql_devise-0.11.2 spec/spec_helper.rb
graphql_devise-0.11.1 spec/spec_helper.rb
graphql_devise-0.11.0 spec/spec_helper.rb
graphql_devise-0.10.1 spec/spec_helper.rb