mailreport 0.1.0 → 0.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4144dc7ef1d3210db021841accb097def4cf61d4edd582064920f994da16a262
4
- data.tar.gz: cdeffe809666d65141cbbc169d110eadb3be17a30bfaf6311b5382af0ddd69ee
3
+ metadata.gz: 77edcdf57f9e324d318c45251384bd4cc7a21340280654d686c1a42627df88bd
4
+ data.tar.gz: 6dbc12089ee32f07f8e1a6c9b8539ce3bb4d40069b21c879d151dd405a0426c5
5
5
  SHA512:
6
- metadata.gz: fe3ab048394c0dd88eb5d8ff99f1a0be42eff511c2add007753e39423e75d01d156a6815b07853a78469c8e7e839e01ffc265b404648a542494e21799b14f092
7
- data.tar.gz: 8d59fb0ec330e5e5099ebeac2bd15420b9f53257a1a0f5ebb3b6c420de653ffcf26577396093f87aec4c86a26102ae1b4696a91824de7e7489addb9a1dc8cf62
6
+ metadata.gz: d35ab1ed5769680d4536e5cf32b790c75110757c15a4297f799f29e916f347514f4db719bedaee46cdaa2aa4ed8109b2c124800af6c9a382c7283cb28452ca79
7
+ data.tar.gz: 25ab27ad73f9cb8b67d9f704c528822ed19df7de3c32e1d1967401ccb3c2f96a6c9bda0a9649ccd54599c48f3ef9bef2b8e79532b7ab3400ece2ec3e59054974
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ Documentation
6
+
3
7
  ## 0.1.0
4
8
 
5
9
  Initial release.
data/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # mailreport
2
2
 
3
- 📧 Read the reports receivers send back about your domain
3
+ 📧 DMARC report parsing for Ruby.
4
4
 
5
- Answers one question: what are receivers seeing?.
5
+ Answers one question: how does your mail look on their end?
6
+
7
+ **mailreport** reads the reports receivers send back about your domain.
6
8
 
7
9
  ## Features
8
10
 
@@ -20,11 +22,14 @@ Answers one question: what are receivers seeing?.
20
22
  - [What Is Not Filled In](#what-is-not-filled-in)
21
23
  - [Unreadable Documents](#unreadable-documents)
22
24
  - [Testing](#testing)
25
+ - [History](#history)
23
26
  - [Contributing](#contributing)
24
27
  - [License](#license)
25
28
 
26
29
  ## Getting Started
27
30
 
31
+ Add this line to your application's Gemfile:
32
+
28
33
  ```ruby
29
34
  gem "mailreport"
30
35
  ```
@@ -137,9 +142,18 @@ bundle install
137
142
  rake
138
143
  ```
139
144
 
145
+ ## History
146
+
147
+ View the [changelog](CHANGELOG.md).
148
+
140
149
  ## Contributing
141
150
 
142
- See [CONTRIBUTING.md](CONTRIBUTING.md). Bug reports: [GitHub issues](https://github.com/mailpiece/mailreport/issues). Security: [SECURITY.md](SECURITY.md).
151
+ Everyone is encouraged to help improve this project:
152
+
153
+ - [Report bugs](https://github.com/mailpiece/mailreport/issues)
154
+ - Fix bugs and submit pull requests
155
+ - Write, clarify, or fix documentation
156
+ - Suggest or add new features
143
157
 
144
158
  ## License
145
159
 
@@ -1,3 +1,3 @@
1
1
  module MailReport
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/mailreport.gemspec CHANGED
@@ -7,10 +7,9 @@ Gem::Specification.new do |spec|
7
7
  spec.platform = Gem::Platform::RUBY
8
8
  spec.required_ruby_version = ">= 3.3.4"
9
9
  spec.authors = [ "Simon Lev" ]
10
- spec.email = [ "support@postrider.dev" ]
11
10
 
12
- spec.summary = "DMARC aggregate and SMTP TLS reports, parsed in pure Ruby."
13
- spec.description = "Answers one question about your domain: what are receivers seeing?"
11
+ spec.summary = "DMARC report parsing for Ruby."
12
+ spec.description = "Answers one question: how does your mail look on their end? Reads the reports receivers send back about your domain."
14
13
 
15
14
  spec.homepage = "https://github.com/mailpiece/mailreport"
16
15
  spec.license = "MIT"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailreport
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Lev
@@ -37,9 +37,8 @@ dependencies:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
39
  version: '6.3'
40
- description: 'Answers one question about your domain: what are receivers seeing?'
41
- email:
42
- - support@postrider.dev
40
+ description: 'Answers one question: how does your mail look on their end? Reads the
41
+ reports receivers send back about your domain.'
43
42
  executables: []
44
43
  extensions: []
45
44
  extra_rdoc_files: []
@@ -79,5 +78,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
78
  requirements: []
80
79
  rubygems_version: 4.0.3
81
80
  specification_version: 4
82
- summary: DMARC aggregate and SMTP TLS reports, parsed in pure Ruby.
81
+ summary: DMARC report parsing for Ruby.
83
82
  test_files: []