truemail 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcfe95783a7652b910c7e7c6f8b9570a5bbeaa59409df51ccf05cc378e49d5e8
4
- data.tar.gz: af43d9eb6b4c4db5c0d7874b6952b53a1f860e29e419db1f2d8d3b3711d61679
3
+ metadata.gz: c068c37a3a011adf6beb2d23eb59f64ca49a9e2e8d88617c24c61b637260ca6f
4
+ data.tar.gz: eb9b7ca50603466fd8e0b7affec71a3997a2a84b807cdf9551996d02253189cc
5
5
  SHA512:
6
- metadata.gz: ee1113ef3b57d82d1f0b9dd2a153326c764922213b07ac6d249f59a36ebe298729bd53a98f221edc2fd1bacab5b34aa03a3ea7ea896304bdf43b578c244c1faa
7
- data.tar.gz: 15f19155a57a25185a9eedbf6d9e12a62ee958395d06b86427779d5c913ed315eae9ac900920cd0305885059b9c82abc29d1e2d2de4f66e9b0b909dceedd7797
6
+ metadata.gz: 371b94b610c36e828385a2c73f214fe5054fff7d7324280cb75825c035a9c2fdba2fdaa3faab5235163bb8925182ef645dfe43d89ec19fcd3cc402e24c4fd127
7
+ data.tar.gz: cbca644ea5872b37ae91de39745eaff59180cc2d1af803d569ed64bd9ab67b581e6d5d005aa78fc16e1a772769d8ad7a381875e33d82fd0ded75a0d317d00b04
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Truemail
4
- VERSION = '3.0.2'
4
+ VERSION = '3.0.3'
5
5
  end
data/truemail.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
6
6
  spec.name = 'truemail'
7
7
  spec.version = Truemail::VERSION
8
8
  spec.authors = ['Vladislav Trotsenko']
9
- spec.email = ['admin@bestweb.com.ua']
9
+ spec.email = %w[admin@bestweb.com.ua]
10
10
 
11
11
  spec.summary = %(truemail)
12
12
  spec.description = %(Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS, SMTP and even more.)
@@ -23,21 +23,18 @@ Gem::Specification.new do |spec|
23
23
  }
24
24
 
25
25
  spec.required_ruby_version = '>= 2.5.0'
26
-
27
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
28
- spec.bindir = 'exe'
29
- spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
30
- spec.require_paths = ['lib']
26
+ spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin|lib)/|.ruby-version|truemail.gemspec|LICENSE}) }
27
+ spec.require_paths = %w[lib]
31
28
 
32
29
  spec.add_runtime_dependency 'net-smtp', '~> 0.3.3' if ::Gem::Version.new(::RUBY_VERSION) >= ::Gem::Version.new('3.1.0')
33
30
  spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
34
31
 
35
- spec.add_development_dependency 'dns_mock', '~> 1.5', '>= 1.5.5'
32
+ spec.add_development_dependency 'dns_mock', '~> 1.5', '>= 1.5.13'
36
33
  spec.add_development_dependency 'ffaker', '~> 2.21'
37
34
  spec.add_development_dependency 'json_matchers', '~> 0.11.1'
38
35
  spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
39
36
  spec.add_development_dependency 'rspec', '~> 3.12'
40
- spec.add_development_dependency 'smtp_mock', '~> 1.3'
37
+ spec.add_development_dependency 'smtp_mock', '~> 1.3', '>= 1.3.1'
41
38
  spec.add_development_dependency 'truemail-rspec', '~> 1.0'
42
39
  spec.add_development_dependency 'webmock', '~> 3.18', '>= 3.18.1'
43
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: truemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladislav Trotsenko
8
- autorequire:
9
- bindir: exe
8
+ autorequire:
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-21 00:00:00.000000000 Z
11
+ date: 2022-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simpleidn
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '1.5'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 1.5.5
36
+ version: 1.5.13
37
37
  type: :development
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '1.5'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 1.5.5
46
+ version: 1.5.13
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: ffaker
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +113,9 @@ dependencies:
113
113
  - - "~>"
114
114
  - !ruby/object:Gem::Version
115
115
  version: '1.3'
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: 1.3.1
116
119
  type: :development
117
120
  prerelease: false
118
121
  version_requirements: !ruby/object:Gem::Requirement
@@ -120,6 +123,9 @@ dependencies:
120
123
  - - "~>"
121
124
  - !ruby/object:Gem::Version
122
125
  version: '1.3'
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: 1.3.1
123
129
  - !ruby/object:Gem::Dependency
124
130
  name: truemail-rspec
125
131
  requirement: !ruby/object:Gem::Requirement
@@ -162,32 +168,8 @@ executables: []
162
168
  extensions: []
163
169
  extra_rdoc_files: []
164
170
  files:
165
- - ".circleci/config.yml"
166
- - ".circleci/gemspec_compatible"
167
- - ".circleci/gemspec_latest"
168
- - ".codeclimate.yml"
169
- - ".github/BRANCH_NAMING_CONVENTION.md"
170
- - ".github/DEVELOPMENT_ENVIRONMENT_GUIDE.md"
171
- - ".github/FUNDING.yml"
172
- - ".github/ISSUE_TEMPLATE/bug_report.md"
173
- - ".github/ISSUE_TEMPLATE/feature_request.md"
174
- - ".github/ISSUE_TEMPLATE/issue_report.md"
175
- - ".github/ISSUE_TEMPLATE/question.md"
176
- - ".github/PULL_REQUEST_TEMPLATE.md"
177
- - ".gitignore"
178
- - ".overcommit.yml"
179
- - ".reek.yml"
180
- - ".rspec"
181
- - ".rubocop.yml"
182
- - ".ruby-gemset"
183
171
  - ".ruby-version"
184
- - CHANGELOG.md
185
- - CODE_OF_CONDUCT.md
186
- - CONTRIBUTING.md
187
- - Gemfile
188
172
  - LICENSE.txt
189
- - README.md
190
- - Rakefile
191
173
  - bin/console
192
174
  - bin/setup
193
175
  - lib/truemail.rb
@@ -231,7 +213,7 @@ metadata:
231
213
  source_code_uri: https://github.com/truemail-rb/truemail
232
214
  documentation_uri: https://truemail-rb.org/truemail-gem
233
215
  bug_tracker_uri: https://github.com/truemail-rb/truemail/issues
234
- post_install_message:
216
+ post_install_message:
235
217
  rdoc_options: []
236
218
  require_paths:
237
219
  - lib
@@ -246,8 +228,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
246
228
  - !ruby/object:Gem::Version
247
229
  version: '0'
248
230
  requirements: []
249
- rubygems_version: 3.2.20
250
- signing_key:
231
+ rubygems_version: 3.2.15
232
+ signing_key:
251
233
  specification_version: 4
252
234
  summary: truemail
253
235
  test_files: []
data/.circleci/config.yml DELETED
@@ -1,147 +0,0 @@
1
- version: 2.1
2
-
3
- defaults: &defaults
4
- working_directory: ~/truemail
5
- docker:
6
- - image: cimg/ruby:<< parameters.ruby-version >>
7
-
8
- orbs:
9
- ruby: circleci/ruby@2.0.0
10
-
11
- references:
12
- restore_bundle_cache: &restore_bundle_cache
13
- restore_cache:
14
- keys:
15
- - truemail-{{ checksum "truemail.gemspec" }}
16
-
17
- bundle_install: &bundle_install
18
- run:
19
- name: Installing gems
20
- command: |
21
- bundle config set --local path 'vendor/bundle'
22
- bundle install
23
-
24
- save_bundle_cache: &save_bundle_cache
25
- save_cache:
26
- key: truemail-{{ checksum "truemail.gemspec" }}
27
- paths:
28
- - vendor/bundle
29
-
30
- install_system_dependencies: &install_system_dependencies
31
- run:
32
- name: Installing system dependencies
33
- command: |
34
- bundle exec smtp_mock -s -i ~
35
-
36
- install_codeclimate_reporter: &install_codeclimate_reporter
37
- run:
38
- name: Installing CodeClimate test reporter
39
- command: |
40
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
41
- chmod +x ./cc-test-reporter
42
-
43
- use_latest_gemspec: &use_latest_gemspec
44
- run:
45
- name: Using latest gemspec
46
- command: |
47
- cp .circleci/gemspec_latest truemail.gemspec
48
-
49
- use_compatible_gemspec: &use_compatible_gemspec
50
- run:
51
- name: Using compatible gemspec
52
- command: |
53
- cp .circleci/gemspec_compatible truemail.gemspec
54
-
55
- jobs:
56
- linters-ruby:
57
- parameters:
58
- ruby-version:
59
- type: string
60
-
61
- <<: *defaults
62
-
63
- steps:
64
- - checkout
65
-
66
- - <<: *use_latest_gemspec
67
- - <<: *restore_bundle_cache
68
- - <<: *bundle_install
69
- - <<: *save_bundle_cache
70
-
71
- - run:
72
- name: Running Overcommit
73
- command: |
74
- bundle exec overcommit -s
75
- SKIP=AuthorEmail,AuthorName bundle exec overcommit -r
76
-
77
- tests-ruby:
78
- parameters:
79
- ruby-version:
80
- type: string
81
-
82
- <<: *defaults
83
-
84
- steps:
85
- - checkout
86
-
87
- - <<: *use_latest_gemspec
88
- - <<: *restore_bundle_cache
89
- - <<: *bundle_install
90
- - <<: *save_bundle_cache
91
- - <<: *install_system_dependencies
92
- - <<: *install_codeclimate_reporter
93
-
94
- - run:
95
- name: Running RSpec
96
- command: |
97
- ./cc-test-reporter before-build
98
- bundle exec rspec
99
-
100
- - run:
101
- name: Creating CodeClimate test coverage report
102
- command: |
103
- ./cc-test-reporter format-coverage -t simplecov -o "coverage/codeclimate.$CIRCLE_NODE_INDEX.json"
104
-
105
- - store_artifacts:
106
- name: Saving Simplecov coverage artifacts
107
- path: ~/truemail/coverage
108
- destination: coverage
109
-
110
- - deploy:
111
- name: Uploading CodeClimate test coverage report
112
- command: |
113
- ./cc-test-reporter sum-coverage --output - --parts $CIRCLE_NODE_TOTAL coverage/codeclimate.*.json | ./cc-test-reporter upload-coverage --debug --input -
114
-
115
- compatibility-ruby:
116
- parameters:
117
- ruby-version:
118
- type: string
119
- docker:
120
- - image: cimg/ruby:<< parameters.ruby-version >>
121
- steps:
122
- - checkout
123
- - <<: *use_compatible_gemspec
124
- - ruby/install-deps:
125
- bundler-version: "2.3.26"
126
- with-cache: false
127
- path: './vendor/custom_bundle'
128
- - <<: *install_system_dependencies
129
- - run:
130
- name: Running compatibility tests
131
- command: bundle exec rspec
132
-
133
- workflows:
134
- build_and_test:
135
- jobs:
136
- - linters-ruby:
137
- matrix:
138
- parameters:
139
- ruby-version: ["3.1"]
140
- - tests-ruby:
141
- matrix:
142
- parameters:
143
- ruby-version: ["3.1"]
144
- - compatibility-ruby:
145
- matrix:
146
- parameters:
147
- ruby-version: ["2.5", "2.6", "2.7", "3.0"]
@@ -1,42 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/truemail/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'truemail'
7
- spec.version = Truemail::VERSION
8
- spec.authors = ['Vladislav Trotsenko']
9
- spec.email = ['admin@bestweb.com.ua']
10
-
11
- spec.summary = %(truemail)
12
- spec.description = %(Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS, SMTP and even more.)
13
-
14
- spec.homepage = 'https://github.com/truemail-rb/truemail'
15
- spec.license = 'MIT'
16
-
17
- spec.metadata = {
18
- 'homepage_uri' => 'https://truemail-rb.org',
19
- 'changelog_uri' => 'https://github.com/truemail-rb/truemail/blob/master/CHANGELOG.md',
20
- 'source_code_uri' => 'https://github.com/truemail-rb/truemail',
21
- 'documentation_uri' => 'https://truemail-rb.org/truemail-gem',
22
- 'bug_tracker_uri' => 'https://github.com/truemail-rb/truemail/issues'
23
- }
24
-
25
- spec.required_ruby_version = ['>= 2.5.0', '< 3.1.0']
26
-
27
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
28
- spec.bindir = 'exe'
29
- spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
30
- spec.require_paths = ['lib']
31
-
32
- spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
33
-
34
- spec.add_development_dependency 'dns_mock', '~> 1.5', '>= 1.5.5'
35
- spec.add_development_dependency 'ffaker', '~> 2.21'
36
- spec.add_development_dependency 'json_matchers', '~> 0.11.1'
37
- spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
38
- spec.add_development_dependency 'rspec', '~> 3.12'
39
- spec.add_development_dependency 'smtp_mock', '~> 1.3'
40
- spec.add_development_dependency 'truemail-rspec', '~> 1.0'
41
- spec.add_development_dependency 'webmock', '~> 3.18', '>= 3.18.1'
42
- end
@@ -1,52 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/truemail/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'truemail'
7
- spec.version = Truemail::VERSION
8
- spec.authors = ['Vladislav Trotsenko']
9
- spec.email = ['admin@bestweb.com.ua']
10
-
11
- spec.summary = %(truemail)
12
- spec.description = %(Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS, SMTP and even more.)
13
-
14
- spec.homepage = 'https://github.com/truemail-rb/truemail'
15
- spec.license = 'MIT'
16
-
17
- spec.metadata = {
18
- 'homepage_uri' => 'https://truemail-rb.org',
19
- 'changelog_uri' => 'https://github.com/truemail-rb/truemail/blob/master/CHANGELOG.md',
20
- 'source_code_uri' => 'https://github.com/truemail-rb/truemail',
21
- 'documentation_uri' => 'https://truemail-rb.org/truemail-gem',
22
- 'bug_tracker_uri' => 'https://github.com/truemail-rb/truemail/issues'
23
- }
24
-
25
- spec.required_ruby_version = '>= 2.5.0'
26
-
27
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
28
- spec.bindir = 'exe'
29
- spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
30
- spec.require_paths = ['lib']
31
-
32
- spec.add_runtime_dependency 'net-smtp', '~> 0.3.3'
33
- spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
34
-
35
- spec.add_development_dependency 'bundler-audit', '~> 0.9.1'
36
- spec.add_development_dependency 'dns_mock', '~> 1.5', '>= 1.5.5'
37
- spec.add_development_dependency 'fasterer', '~> 0.10.0'
38
- spec.add_development_dependency 'ffaker', '~> 2.21'
39
- spec.add_development_dependency 'json_matchers', '~> 0.11.1'
40
- spec.add_development_dependency 'overcommit', '~> 0.59.1'
41
- spec.add_development_dependency 'pry-byebug', '~> 3.10', '>= 3.10.1'
42
- spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
43
- spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.2'
44
- spec.add_development_dependency 'rspec', '~> 3.12'
45
- spec.add_development_dependency 'rubocop', '~> 1.39'
46
- spec.add_development_dependency 'rubocop-performance', '~> 1.15', '>= 1.15.1'
47
- spec.add_development_dependency 'rubocop-rspec', '~> 2.15'
48
- spec.add_development_dependency 'simplecov', '~> 0.21.2'
49
- spec.add_development_dependency 'smtp_mock', '~> 1.3'
50
- spec.add_development_dependency 'truemail-rspec', '~> 1.0'
51
- spec.add_development_dependency 'webmock', '~> 3.18', '>= 3.18.1'
52
- end
data/.codeclimate.yml DELETED
@@ -1,13 +0,0 @@
1
- checks:
2
- argument-count:
3
- enabled: false
4
- method-complexity:
5
- enabled: false
6
-
7
- plugins:
8
- rubocop:
9
- enabled: true
10
- channel: rubocop-1-39
11
-
12
- reek:
13
- enabled: true
@@ -1,36 +0,0 @@
1
- # Branch naming convention
2
-
3
- ## Branch naming
4
-
5
- > Please note for new pull requests create new branches from current `develop` branch only.
6
-
7
- Branch name should include type of your contribution and context. Please follow next pattern for naming your branches:
8
-
9
- ```bash
10
- feature/add-some-feature
11
- technical/some-technical-improvements
12
- bugfix/fix-some-bug-name
13
- ```
14
-
15
- ## Before PR actions
16
-
17
- ### Squash commits
18
-
19
- Please squash all branch commits into the one before openning your PR from your fork. It's simple to do with the git:
20
-
21
- ```bash
22
- git rebase -i [hash your first commit of your branch]~1
23
- git rebase -i 6467fe36232401fa740af067cfd8ac9ec932fed2~1 # example
24
- ```
25
-
26
- ### Add commit description
27
-
28
- Please complete your commit description folowing next pattern:
29
-
30
- ```
31
- Technical/Add info files # should be the same name as your branch name
32
-
33
- * Added license, changelog, contributing, code of conduct docs
34
- * Added GitHub templates
35
- * Updated project license link
36
- ```
@@ -1,33 +0,0 @@
1
- # Development environment guide
2
-
3
- ## Preparing
4
-
5
- Clone `truemail` repository:
6
-
7
- ```bash
8
- git clone https://github.com/truemail-rb/truemail.git
9
- cd truemail
10
- ```
11
-
12
- Configure latest Ruby environment:
13
-
14
- ```bash
15
- echo 'ruby-3.1.2' > .ruby-version
16
- cp .circleci/gemspec_latest truemail.gemspec
17
- ```
18
-
19
- ## Installing dependencies
20
-
21
- ```bash
22
- bundle install
23
- bundle exec smtp_mock -s -i ~
24
- ```
25
-
26
- ## Commiting
27
-
28
- Commit your changes excluding `.ruby-version`, `truemail.gemspec`
29
-
30
- ```bash
31
- git add . ':!.ruby-version' ':!truemail.gemspec'
32
- git commit -m 'Your new awesome truemail feature'
33
- ```
data/.github/FUNDING.yml DELETED
@@ -1 +0,0 @@
1
- github: [bestwebua]
@@ -1,28 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
- title: "[BUG] Your bug report title here"
5
- labels: bug
6
- assignees: bestwebua
7
-
8
- ---
9
-
10
- <!-- Thanks for helping to make Truemail better! Before submit your bug, please make sure to check the following boxes by putting an x in the [ ] (don't: [x ], [ x], do: [x]) -->
11
-
12
- ### New bug checklist
13
-
14
- - [ ] I have updated `truemail` to the latest version
15
- - [ ] I have read the [Contribution Guidelines](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
16
- - [ ] I have read the [documentation](https://truemail-rb.org/truemail-gem)
17
- - [ ] I have searched for [existing GitHub issues](https://github.com/truemail-rb/truemail/issues)
18
-
19
- <!-- Please use next pattern for your bug report title: [BUG] Your bug report title here -->
20
-
21
- ### Bug description
22
- <!-- Please include what's happening, expected behavior, and any relevant code samples -->
23
-
24
- ##### Complete output when running truemail, including the stack trace and command used
25
-
26
- <details>
27
- <pre>[INSERT OUTPUT HERE]</pre>
28
- </details>
@@ -1,27 +0,0 @@
1
- ---
2
- name: Feature request
3
- about: Suggest an idea for Truemail
4
- title: "[FEATURE] Your feature request title here"
5
- labels: enhancement
6
- assignees: bestwebua
7
-
8
- ---
9
-
10
- <!-- Thanks for helping to make Truemail better! Before submit your new feature request, please make sure to check the following boxes by putting an x in the [ ] (don't: [x ], [ x], do: [x]) -->
11
-
12
- ### New feature request checklist
13
-
14
- - [ ] I have updated `truemail` to the latest version
15
- - [ ] I have read the [Contribution Guidelines](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
16
- - [ ] I have read the [documentation](https://truemail-rb.org/truemail-gem)
17
- - [ ] I have searched for [existing GitHub issues](https://github.com/truemail-rb/truemail/issues)
18
-
19
- <!-- Please use next pattern for your feature request title: [FEATURE] Your feature request title here -->
20
-
21
- ### Feature description
22
-
23
- <!-- Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
24
-
25
- Describe the solution you'd like. A clear and concise description of what you want to happen.
26
-
27
- Describe alternatives you've considered. A clear and concise description of any alternative solutions or features you've considered. -->
@@ -1,28 +0,0 @@
1
- ---
2
- name: Issue report
3
- about: Create a report to help us improve
4
- title: "[ISSUE] Your issue report title here"
5
- labels: ''
6
- assignees: bestwebua
7
-
8
- ---
9
-
10
- <!-- Thanks for helping to make Truemail better! Before submit your issue, please make sure to check the following boxes by putting an x in the [ ] (don't: [x ], [ x], do: [x]) -->
11
-
12
- ### New issue checklist
13
-
14
- - [ ] I have updated `truemail` to the latest version
15
- - [ ] I have read the [Contribution Guidelines](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
16
- - [ ] I have read the [documentation](https://truemail-rb.org/truemail-gem)
17
- - [ ] I have searched for [existing GitHub issues](https://github.com/truemail-rb/truemail/issues)
18
-
19
- <!-- Please use next pattern for your issue report title: [ISSUE] Your issue report title here -->
20
-
21
- ### Issue description
22
- <!-- Please include what's happening, expected behavior, and any relevant code samples -->
23
-
24
- ##### Complete output when running truemail, including the stack trace and command used
25
-
26
- <details>
27
- <pre>[INSERT OUTPUT HERE]</pre>
28
- </details>
@@ -1,22 +0,0 @@
1
- ---
2
- name: Question
3
- about: Ask your question to Truemail team
4
- title: "[QUESTION] Your question title here"
5
- labels: question
6
- assignees: bestwebua
7
-
8
- ---
9
-
10
- <!-- Thanks for helping to make Truemail better! Before submit your question, please make sure to check the following boxes by putting an x in the [ ] (don't: [x ], [ x], do: [x]) -->
11
-
12
- ### New question checklist
13
-
14
- - [ ] I have read the [Contribution Guidelines](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
15
- - [ ] I have read the [documentation](https://truemail-rb.org/truemail-gem)
16
- - [ ] I have searched for [existing GitHub issues](https://github.com/truemail-rb/truemail/issues)
17
-
18
- <!-- Please use next pattern for your question title: [QUESTION] Your question title here -->
19
-
20
- ### Question
21
-
22
- <!-- Your question context here -->
@@ -1,49 +0,0 @@
1
- # PR Details
2
-
3
- <!-- Provide a general summary of your changes in the Title above -->
4
- <!-- PR name should the same name as your branch name, example: -->
5
- <!-- Branch name is: feature/add-some-feature -->
6
- <!-- PR name should be: Feature/Add some feature -->
7
-
8
- ## Description
9
-
10
- <!--- Describe your changes in detail -->
11
-
12
- ## Related Issue
13
-
14
- <!--- This project only accepts pull requests related to open issues -->
15
- <!--- If suggesting a new feature or change, please discuss it in an issue first -->
16
- <!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
17
- <!--- Please link to the issue here: -->
18
-
19
- ## Motivation and Context
20
-
21
- <!--- Why is this change required? What problem does it solve? -->
22
-
23
- ## How Has This Been Tested
24
-
25
- <!--- Please describe in detail how you tested your changes. -->
26
- <!--- Include details of your testing environment, and the tests you ran to -->
27
- <!--- see how your change affects other areas of the code, etc. -->
28
-
29
- ## Types of changes
30
-
31
- <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
32
-
33
- - [ ] Docs change / refactoring / dependency upgrade
34
- - [ ] Bug fix (non-breaking change which fixes an issue)
35
- - [ ] New feature (non-breaking change which adds functionality)
36
- - [ ] Breaking change (fix or feature that would cause existing functionality to change)
37
-
38
- ## Checklist
39
-
40
- <!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
41
- <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
42
-
43
- - [ ] My code follows the code style of this project
44
- - [ ] My change requires a change to the documentation
45
- - [ ] I have updated the documentation accordingly
46
- - [ ] I have read the [**CONTRIBUTING** document](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
47
- - [ ] I have added tests to cover my changes
48
- - [ ] I have run `bundle exec rspec` from the root directory to see all new and existing tests pass
49
- - [ ] I have run `rubocop` and `reek` to ensure the code style is valid
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- /.rspec_status
2
- /pkg
3
- /coverage/
4
- Gemfile.lock