mailcatcher 0.6.3 → 0.6.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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +0 -3
- data/lib/mail_catcher.rb +11 -0
- data/lib/mail_catcher/version.rb +1 -1
- metadata +20 -12
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4df5d7d1f5d6c85081ee36e09eeabceddb856de5
|
|
4
|
+
data.tar.gz: c334f6b1947dd3d15b03074cb129a5827a533def
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cb77ec86249081b9d089cf16e5677d002575c109b39240af9c99bb7cdb6746f9f57788b0fb754dab9f634aa559cf8071e1d8701bc95d6f06f9af8aa8d29758e
|
|
7
|
+
data.tar.gz: 1bae556a26691d1efc72dc7a0a6364cce3b945cfa4dfb771e119be02e4e8688b287a0e6f7b18bf40817c816bc3512f257af76527a09aa6bd1b5287a531815e43
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -90,11 +90,8 @@ A fairly RESTful URL schema means you can download a list of messages in JSON fr
|
|
|
90
90
|
## TODO
|
|
91
91
|
|
|
92
92
|
* Add mail delivery on request, optionally multiple times.
|
|
93
|
-
* An API-compatible nodejs version, for fun and profit (and non-ruby npm users).
|
|
94
|
-
* Test suite.
|
|
95
93
|
* Compatibility testing against CampaignMonitor's [design guidelines](http://www.campaignmonitor.com/design-guidelines/) and [CSS support matrix](http://www.campaignmonitor.com/css/).
|
|
96
94
|
* Forward mail to rendering service, maybe CampaignMonitor?
|
|
97
|
-
* Package as an app? Native interfaces? HotCocoa?
|
|
98
95
|
|
|
99
96
|
## Thanks
|
|
100
97
|
|
data/lib/mail_catcher.rb
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
# Apparently rubygems won't activate these on its own, so here we go. Let's
|
|
2
|
+
# repeat the invention of Bundler all over again.
|
|
3
|
+
gem "activesupport", "~> 4.0"
|
|
4
|
+
gem "eventmachine", "1.0.9.1"
|
|
5
|
+
gem "mail", "~> 2.3"
|
|
6
|
+
gem "rack", "~> 1.5"
|
|
7
|
+
gem "sinatra", "~> 1.2"
|
|
8
|
+
gem "sqlite3", "~> 1.3"
|
|
9
|
+
gem "thin", "~> 1.5.0"
|
|
10
|
+
gem "skinny", "~> 0.2.3"
|
|
11
|
+
|
|
1
12
|
require "open3"
|
|
2
13
|
require "optparse"
|
|
3
14
|
require "rbconfig"
|
data/lib/mail_catcher/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mailcatcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Cochran
|
|
@@ -28,28 +28,22 @@ cert_chain:
|
|
|
28
28
|
52G9HuhbVSTgE/I10H9qZBOE3qdP8ka/Fk0PUrux/DuUanNZgSKJokrQvRA4H9Au
|
|
29
29
|
WpPA7HJYV6msWQiukoBEhfQ2l6Fl2HUwntvX3MCcFNHeJJ5ETERp9alo88E=
|
|
30
30
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2016-
|
|
31
|
+
date: 2016-02-04 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: activesupport
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: 4.0.0
|
|
40
|
-
- - "<"
|
|
37
|
+
- - "~>"
|
|
41
38
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: '
|
|
39
|
+
version: '4.0'
|
|
43
40
|
type: :runtime
|
|
44
41
|
prerelease: false
|
|
45
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
43
|
requirements:
|
|
47
|
-
- - "
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: 4.0.0
|
|
50
|
-
- - "<"
|
|
44
|
+
- - "~>"
|
|
51
45
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: '
|
|
46
|
+
version: '4.0'
|
|
53
47
|
- !ruby/object:Gem::Dependency
|
|
54
48
|
name: eventmachine
|
|
55
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -78,6 +72,20 @@ dependencies:
|
|
|
78
72
|
- - "~>"
|
|
79
73
|
- !ruby/object:Gem::Version
|
|
80
74
|
version: '2.3'
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: rack
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.5'
|
|
82
|
+
type: :runtime
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.5'
|
|
81
89
|
- !ruby/object:Gem::Dependency
|
|
82
90
|
name: sinatra
|
|
83
91
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
|
Binary file
|