pakyow-mailer 0.9.1 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/pakyow-mailer/{CHANGES → CHANGELOG.md} +11 -6
- data/pakyow-mailer/LICENSE +20 -0
- data/pakyow-mailer/README.md +34 -0
- data/pakyow-mailer/lib/mailer/mailer.rb +1 -1
- metadata +30 -17
- data/pakyow-mailer/MIT-LICENSE +0 -0
- data/pakyow-mailer/README +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d92d9b184c3c3c1b4fb626c15d5225d862a20137
|
4
|
+
data.tar.gz: 9d4eb000d31b539b006896540b1a635ff2129dcd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01f22bf6da97e1b067f76c0b32e77682b031d43234692213882b6a7fc136d08fd1a59a161c05cf70fc9e1250199864bdd8e643ab90ed66e49928288d7afb1b4c
|
7
|
+
data.tar.gz: ad6520ffccf907ff05b2b6878db9619e86c55799e18935785eb48354e4ee1406e3e0dd17c99fb08daddd8eef6cf935731960c20e661ccd3d132c7ae696d51011
|
@@ -1,23 +1,28 @@
|
|
1
|
-
|
1
|
+
# 0.10.0 (to be released)
|
2
|
+
|
3
|
+
* Prevent styles from being mixed into plaintext emails
|
4
|
+
* Ported all tests to rspec
|
5
|
+
|
6
|
+
# 0.9.1 / 2014-12-06
|
2
7
|
|
3
8
|
* No changes -- bumped version to be consistent
|
4
9
|
|
5
|
-
|
10
|
+
# 0.9.0 / 2014-11-09
|
6
11
|
|
7
12
|
* Removes support for Ruby versions < 2.0.0
|
8
13
|
|
9
|
-
|
14
|
+
# 0.8.0 / 2014-03-02
|
10
15
|
|
11
16
|
* Major rewrite, including premailer support
|
12
17
|
|
13
|
-
|
18
|
+
# 0.7.2 / 2012-02-29
|
14
19
|
|
15
20
|
* Set HTML part of email rather than body
|
16
21
|
|
17
|
-
|
22
|
+
# 0.7.1 / 2012-01-08
|
18
23
|
|
19
24
|
* No changes -- bumped version to be consistent
|
20
25
|
|
21
|
-
|
26
|
+
# 0.7.0 / 2011-11-19
|
22
27
|
|
23
28
|
* Initial gem release
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011-2015 Bryan Powell
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# pakyow-mailer
|
2
|
+
|
3
|
+
A way of delivering views via email in Pakyow.
|
4
|
+
|
5
|
+
# Download
|
6
|
+
|
7
|
+
The latest version of Pakyow Mailer can be installed with RubyGems:
|
8
|
+
|
9
|
+
```
|
10
|
+
gem install pakyow-mailer
|
11
|
+
```
|
12
|
+
|
13
|
+
Source code can be downloaded as part of the Pakyow project on Github:
|
14
|
+
|
15
|
+
- https://github.com/pakyow/pakyow/tree/master/pakyow-mailer
|
16
|
+
|
17
|
+
# License
|
18
|
+
|
19
|
+
Pakyow Mailer is released free and open-source under the [MIT
|
20
|
+
License](http://opensource.org/licenses/MIT).
|
21
|
+
|
22
|
+
# Support
|
23
|
+
|
24
|
+
Documentation is available here:
|
25
|
+
|
26
|
+
- http://pakyow.org/docs/mailer
|
27
|
+
|
28
|
+
Found a bug? Tell us about it here:
|
29
|
+
|
30
|
+
- https://github.com/pakyow/pakyow/issues
|
31
|
+
|
32
|
+
We'd love to have you in the community:
|
33
|
+
|
34
|
+
- http://pakyow.org/get-involved
|
@@ -55,8 +55,8 @@ module Pakyow
|
|
55
55
|
Pakyow.logger.warn "#{w[:message]} (#{w[:level]}) may not render properly in #{w[:clients]}"
|
56
56
|
end
|
57
57
|
|
58
|
-
@processed_content[:html] = @premailer.to_inline_css
|
59
58
|
@processed_content[:text] = @content || @premailer.to_plain_text
|
59
|
+
@processed_content[:html] = @premailer.to_inline_css
|
60
60
|
else
|
61
61
|
@processed_content[:text] = @content
|
62
62
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pakyow-mailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryan Powell
|
@@ -9,36 +9,50 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-10-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: pakyow-support
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - '='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.10.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - '='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.10.0
|
14
28
|
- !ruby/object:Gem::Dependency
|
15
29
|
name: pakyow-core
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
17
31
|
requirements:
|
18
32
|
- - '='
|
19
33
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
34
|
+
version: 0.10.0
|
21
35
|
type: :runtime
|
22
36
|
prerelease: false
|
23
37
|
version_requirements: !ruby/object:Gem::Requirement
|
24
38
|
requirements:
|
25
39
|
- - '='
|
26
40
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
41
|
+
version: 0.10.0
|
28
42
|
- !ruby/object:Gem::Dependency
|
29
43
|
name: pakyow-presenter
|
30
44
|
requirement: !ruby/object:Gem::Requirement
|
31
45
|
requirements:
|
32
46
|
- - '='
|
33
47
|
- !ruby/object:Gem::Version
|
34
|
-
version: 0.
|
48
|
+
version: 0.10.0
|
35
49
|
type: :runtime
|
36
50
|
prerelease: false
|
37
51
|
version_requirements: !ruby/object:Gem::Requirement
|
38
52
|
requirements:
|
39
53
|
- - '='
|
40
54
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.
|
55
|
+
version: 0.10.0
|
42
56
|
- !ruby/object:Gem::Dependency
|
43
57
|
name: mail
|
44
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -73,28 +87,28 @@ dependencies:
|
|
73
87
|
requirements:
|
74
88
|
- - "~>"
|
75
89
|
- !ruby/object:Gem::Version
|
76
|
-
version: '5.
|
90
|
+
version: '5.6'
|
77
91
|
type: :development
|
78
92
|
prerelease: false
|
79
93
|
version_requirements: !ruby/object:Gem::Requirement
|
80
94
|
requirements:
|
81
95
|
- - "~>"
|
82
96
|
- !ruby/object:Gem::Version
|
83
|
-
version: '5.
|
84
|
-
description:
|
97
|
+
version: '5.6'
|
98
|
+
description: Mailers for Pakyow
|
85
99
|
email: bryan@metabahn.com
|
86
100
|
executables: []
|
87
101
|
extensions: []
|
88
102
|
extra_rdoc_files: []
|
89
103
|
files:
|
90
|
-
- pakyow-mailer/
|
91
|
-
- pakyow-mailer/
|
92
|
-
- pakyow-mailer/README
|
104
|
+
- pakyow-mailer/CHANGELOG.md
|
105
|
+
- pakyow-mailer/LICENSE
|
106
|
+
- pakyow-mailer/README.md
|
93
107
|
- pakyow-mailer/lib/mailer/config/mailer.rb
|
94
108
|
- pakyow-mailer/lib/mailer/helpers.rb
|
95
109
|
- pakyow-mailer/lib/mailer/mailer.rb
|
96
110
|
- pakyow-mailer/lib/pakyow-mailer.rb
|
97
|
-
homepage: http://pakyow.
|
111
|
+
homepage: http://pakyow.org
|
98
112
|
licenses:
|
99
113
|
- MIT
|
100
114
|
metadata: {}
|
@@ -113,10 +127,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
127
|
- !ruby/object:Gem::Version
|
114
128
|
version: '0'
|
115
129
|
requirements: []
|
116
|
-
rubyforge_project:
|
117
|
-
rubygems_version: 2.
|
130
|
+
rubyforge_project:
|
131
|
+
rubygems_version: 2.4.5
|
118
132
|
signing_key:
|
119
133
|
specification_version: 4
|
120
|
-
summary:
|
134
|
+
summary: Pakyow Mailer
|
121
135
|
test_files: []
|
122
|
-
has_rdoc:
|
data/pakyow-mailer/MIT-LICENSE
DELETED
File without changes
|
data/pakyow-mailer/README
DELETED
File without changes
|