sanitize_email 2.0.2 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/spec/spec_helper.rb DELETED
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright (c) 2008-16 Peter H. Boling of RailsBling.com
4
- # Released under the MIT license
5
- require 'mail'
6
- require 'rails'
7
- require 'action_mailer'
8
- if RUBY_ENGINE == 'mri'
9
- require 'byebug'
10
- require 'pry-byebug'
11
- end
12
- require 'logger'
13
-
14
- # For code coverage, must be required before all application / gem / library code.
15
- require 'coveralls'
16
- Coveralls.wear!
17
-
18
- require 'sanitize_email'
19
- require 'sanitize_email/rspec_matchers'
20
-
21
- # Requires supporting files with custom matchers and macros, etc,
22
- # in ./support/ and its subdirectories.
23
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
24
-
25
- # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
26
- RSpec.configure do |config|
27
- config.include SanitizeEmail::RspecMatchers
28
- end