truemail 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.overcommit.yml DELETED
@@ -1,32 +0,0 @@
1
- PreCommit:
2
- AuthorEmail:
3
- enabled: true
4
- required: false
5
-
6
- AuthorName:
7
- enabled: false
8
-
9
- BundleAudit:
10
- enabled: true
11
-
12
- Fasterer:
13
- enabled: true
14
- include: '**/*.rb'
15
-
16
- TrailingWhitespace:
17
- enabled: true
18
-
19
- RuboCop:
20
- enabled: true
21
- flags: ['--format=emacs', '--force-exclusion', '--display-cop-names']
22
-
23
- Reek:
24
- enabled: true
25
- flags: ['--force-exclusion']
26
-
27
- PostCheckout:
28
- ALL:
29
- quiet: true
30
-
31
- IndexTags:
32
- enabled: true
data/.reek.yml DELETED
@@ -1,88 +0,0 @@
1
- detectors:
2
- IrresponsibleModule:
3
- enabled: false
4
-
5
- NestedIterators:
6
- exclude:
7
- - Truemail::ConfigurationHelper#configuration_block
8
- - Truemail::Validate::Smtp#not_includes_user_not_found_errors
9
-
10
- TooManyStatements:
11
- exclude:
12
- - Truemail::Validate::Smtp::Request#run
13
- - Truemail::Validate::Smtp#run
14
- - Truemail::Validate::Mx#hosts_from_cname_records
15
- - Truemail::Configuration#logger=
16
- - Truemail::Validate::Smtp::Request#initialize
17
- - Truemail::Validate::Smtp::Request::Session#initialize
18
- - Truemail::RSpec::ValidatorHelper::ValidatorFactory#process_validator_params
19
-
20
- TooManyInstanceVariables:
21
- exclude:
22
- - Truemail::Configuration
23
- - Truemail::Validate::Smtp::Request
24
-
25
- TooManyMethods:
26
- exclude:
27
- - Truemail::Configuration
28
-
29
- Attribute:
30
- exclude:
31
- - Truemail::Configuration#whitelist_validation
32
- - Truemail::Configuration#not_rfc_mx_lookup_flow
33
- - Truemail::Configuration#smtp_fail_fast
34
- - Truemail::Configuration#smtp_safe_check
35
- - Truemail::Wrapper#attempts
36
-
37
- UtilityFunction:
38
- exclude:
39
- - Truemail::Audit::Base#verifier_domain
40
- - Truemail::Configuration#logger_options
41
- - Truemail::Configuration#match_regex?
42
- - Truemail::Configuration#regex_by_method
43
- - Truemail::Dns::Worker#nameserver_port
44
- - Truemail::Log::Serializer::Base#errors
45
- - Truemail::Log::Serializer::ValidatorBase#replace_invalid_chars
46
- - Truemail::Validator#select_validation_type
47
- - Truemail::Validator#constantize
48
- - Truemail::Validate::Base#configuration
49
- - Truemail::Validate::Mx#null_mx?
50
- - Truemail::Validate::Mx#a_record
51
- - Truemail::Validate::Smtp::Request#compose_from
52
- - Truemail::Validate::Smtp::Request::Session#old_net_smtp?
53
-
54
- ControlParameter:
55
- exclude:
56
- - Truemail::GenerateEmailHelper#calculate_email_size
57
- - Truemail::Worker#success
58
- - Truemail#raise_unless
59
- - Truemail::Configuration#raise_unless
60
- - Truemail#determine_configuration
61
-
62
- FeatureEnvy:
63
- exclude:
64
- - Truemail::Validate::Smtp#not_includes_user_not_found_errors
65
- - Truemail::GenerateEmailHelper#prepare_user_name
66
- - Truemail::ConfigurationHelper#create_configuration
67
- - Truemail::Log::Serializer::Base#smtp_debug
68
- - Truemail::Log::Serializer::Text#data_composer
69
- - Truemail::Log::Serializer::ValidatorBase#smtp_debug
70
- - Truemail::Log::Serializer::ValidatorText#data_composer
71
-
72
- NilCheck:
73
- exclude:
74
- - Truemail::Validator#result_not_changed?
75
- - Truemail::Configuration#logger=
76
- - Truemail::Validator#run
77
-
78
- BooleanParameter:
79
- exclude:
80
- - Truemail::Configuration#logger=
81
-
82
- TooManyConstants:
83
- exclude:
84
- - Truemail::Configuration
85
- - Truemail::RegexConstant
86
-
87
- exclude_paths:
88
- - spec/support/helpers
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --require spec_helper
2
- --format documentation
data/.rubocop.yml DELETED
@@ -1,132 +0,0 @@
1
- require:
2
- - rubocop-rspec
3
- - rubocop-performance
4
-
5
- AllCops:
6
- DisplayCopNames: true
7
- DisplayStyleGuide: true
8
- TargetRubyVersion: 2.5
9
- NewCops: enable
10
-
11
- # Metrics ---------------------------------------------------------------------
12
-
13
- Metrics/ClassLength:
14
- Max: 150
15
-
16
- Metrics/MethodLength:
17
- Max: 15
18
-
19
- Metrics/BlockLength:
20
- Enabled: false
21
-
22
- Metrics/CyclomaticComplexity:
23
- Enabled: false
24
-
25
- Metrics/PerceivedComplexity:
26
- Enabled: false
27
-
28
- # Naming ----------------------------------------------------------------------
29
-
30
- Naming/VariableNumber:
31
- Enabled: false
32
-
33
- Naming/RescuedExceptionsVariableName:
34
- Enabled: false
35
-
36
- Naming/InclusiveLanguage:
37
- Enabled: false
38
-
39
- # Style -----------------------------------------------------------------------
40
-
41
- Style/Documentation:
42
- Enabled: false
43
-
44
- Style/DoubleNegation:
45
- Enabled: false
46
-
47
- Style/EmptyCaseCondition:
48
- Enabled: false
49
-
50
- Style/RescueStandardError:
51
- Enabled: false
52
-
53
- # Layout ----------------------------------------------------------------------
54
-
55
- Layout/LineLength:
56
- Max: 140
57
-
58
- Layout/ClassStructure:
59
- Enabled: true
60
- Categories:
61
- module_inclusion:
62
- - include
63
- - prepend
64
- - extend
65
- ExpectedOrder:
66
- - module_inclusion
67
- - constants
68
- - public_class_methods
69
- - initializer
70
- - public_methods
71
- - protected_methods
72
- - private_methods
73
-
74
- Layout/EmptyLineAfterGuardClause:
75
- Enabled: false
76
-
77
- # Lint ------------------------------------------------------------------------
78
-
79
- Lint/NonDeterministicRequireOrder:
80
- Enabled: false
81
-
82
- Lint/NoReturnInBeginEndBlocks:
83
- Enabled: false
84
-
85
- Lint/MissingSuper:
86
- Enabled: false
87
-
88
- # Gemspec ---------------------------------------------------------------------
89
-
90
- Gemspec/RequireMFA:
91
- Enabled: false
92
-
93
- Gemspec/RubyVersionGlobalsUsage:
94
- Enabled: false
95
-
96
- # RSpec -----------------------------------------------------------------------
97
-
98
- RSpec/ExampleLength:
99
- Enabled: false
100
-
101
- RSpec/NestedGroups:
102
- Enabled: false
103
-
104
- RSpec/MultipleExpectations:
105
- Enabled: false
106
-
107
- RSpec/MessageChain:
108
- Enabled: false
109
-
110
- RSpec/ContextWording:
111
- Enabled: false
112
-
113
- RSpec/AnyInstance:
114
- Enabled: false
115
-
116
- RSpec/MessageSpies:
117
- Enabled: false
118
-
119
- RSpec/MultipleDescribes:
120
- Enabled: false
121
-
122
- RSpec/MultipleMemoizedHelpers:
123
- Enabled: false
124
-
125
- RSpec/StubbedMock:
126
- Enabled: false
127
-
128
- RSpec/SubjectStub:
129
- Enabled: false
130
-
131
- RSpec/VerifiedDoubleReference:
132
- Enabled: false
data/.ruby-gemset DELETED
@@ -1 +0,0 @@
1
- truemail