pony 1.6.1 → 1.6.2
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
- data/lib/pony.rb +2 -2
- data/pony.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd8ec51f958a8381a430a207d3c841c74062d7ca
|
|
4
|
+
data.tar.gz: 10fd40c67cedaa1e49501abb77c449aa33113681
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ff87c2cd04aa72fd42341d485d187eb64828f7cb1657bb239b5f27281709e11a281ee348f4e1af5bca6d8db44a157cb3006528e1d6cb5cbf679df49c6ae6b99
|
|
7
|
+
data.tar.gz: 55bf1444151fa19569c0c273043f65bb849fa4b029ae607332330c57fff99442a33b7f83430af6905e13538176b7854a5b24b9aef70920d672e2e4fa81fca00b
|
data/lib/pony.rb
CHANGED
|
@@ -210,8 +210,8 @@ module Pony
|
|
|
210
210
|
# mime-types wants to send these as "quoted-printable"
|
|
211
211
|
if name =~ /\.xlsx$/
|
|
212
212
|
mail.attachments[name] = {
|
|
213
|
-
content
|
|
214
|
-
transfer_encoding
|
|
213
|
+
:content => Base64.encode64(body),
|
|
214
|
+
:transfer_encoding => :base64
|
|
215
215
|
}
|
|
216
216
|
else
|
|
217
217
|
mail.attachments[name] = body
|
data/pony.gemspec
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'pony'
|
|
5
|
-
s.version = "1.6.
|
|
5
|
+
s.version = "1.6.2"
|
|
6
6
|
|
|
7
|
-
s.summary = "Send email in one command: Pony.mail(:to => 'someone@example.com', :body => 'hello')
|
|
7
|
+
s.summary = "Send email in one command: Pony.mail(:to => 'someone@example.com', :body => 'hello')"
|
|
8
8
|
s.description = s.summary
|
|
9
9
|
s.authors = ["Adam Wiggins", "Ben Prew"]
|
|
10
10
|
s.email = 'ben@throwingbones.com'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pony
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Wiggins
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-12-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: mail
|
|
@@ -40,7 +40,7 @@ dependencies:
|
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
41
|
version: 2.0.0
|
|
42
42
|
description: 'Send email in one command: Pony.mail(:to => ''someone@example.com'',
|
|
43
|
-
:body => ''hello'')
|
|
43
|
+
:body => ''hello'')'
|
|
44
44
|
email: ben@throwingbones.com
|
|
45
45
|
executables: []
|
|
46
46
|
extensions: []
|
|
@@ -78,5 +78,5 @@ rubygems_version: 2.0.3
|
|
|
78
78
|
signing_key:
|
|
79
79
|
specification_version: 4
|
|
80
80
|
summary: 'Send email in one command: Pony.mail(:to => ''someone@example.com'', :body
|
|
81
|
-
=> ''hello'')
|
|
81
|
+
=> ''hello'')'
|
|
82
82
|
test_files: []
|