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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pony.rb +2 -2
  3. data/pony.gemspec +2 -2
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b989ba61f81f34d5bbdc1f6053c3094b923b161b
4
- data.tar.gz: 1e22e925f9798fd041a30788e58a86918a19b1b9
3
+ metadata.gz: cd8ec51f958a8381a430a207d3c841c74062d7ca
4
+ data.tar.gz: 10fd40c67cedaa1e49501abb77c449aa33113681
5
5
  SHA512:
6
- metadata.gz: 8b6f8cb9c850970c1307a965b706673e12e5317614e097b8590406d2806cb0bebd32d44b57e538e4b30e4ac3f33b12c008fe5987fb3aec330ded706a44c0f7fa
7
- data.tar.gz: 3efca87c016ffcccc4b77ea3f66da7b0ce5620fdb403ed8ed69bbe79f22b012d4a858caeedeb34394a47fb74c90e5190b9486566a6ba19b65f11949d187218c3
6
+ metadata.gz: 6ff87c2cd04aa72fd42341d485d187eb64828f7cb1657bb239b5f27281709e11a281ee348f4e1af5bca6d8db44a157cb3006528e1d6cb5cbf679df49c6ae6b99
7
+ data.tar.gz: 55bf1444151fa19569c0c273043f65bb849fa4b029ae607332330c57fff99442a33b7f83430af6905e13538176b7854a5b24b9aef70920d672e2e4fa81fca00b
@@ -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: Base64.encode64(body),
214
- transfer_encoding: :base64
213
+ :content => Base64.encode64(body),
214
+ :transfer_encoding => :base64
215
215
  }
216
216
  else
217
217
  mail.attachments[name] = body
@@ -2,9 +2,9 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'pony'
5
- s.version = "1.6.1"
5
+ s.version = "1.6.2"
6
6
 
7
- s.summary = "Send email in one command: Pony.mail(:to => 'someone@example.com', :body => 'hello')Pony, the express way to send email in Ruby"
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.1
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-11-28 00:00:00.000000000 Z
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'')Pony, the express way to send email in Ruby'
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'')Pony, the express way to send email in Ruby'
81
+ => ''hello'')'
82
82
  test_files: []