sendhub 0.1.2 → 0.1.3
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.
- data/lib/sendhub.rb +5 -1
- data/lib/sendhub/http.rb +0 -2
- data/lib/sendhub/rails.rb +0 -5
- metadata +14 -5
data/lib/sendhub.rb
CHANGED
data/lib/sendhub/http.rb
CHANGED
data/lib/sendhub/rails.rb
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
require 'action_mailer'
|
2
|
-
|
3
1
|
module SendhubMethods
|
4
2
|
def perform_delivery_sendhub(message)
|
5
3
|
client = Sendhub::Client.new(
|
@@ -12,8 +10,6 @@ module SendhubMethods
|
|
12
10
|
:subject => message.subject,
|
13
11
|
:body => message.body
|
14
12
|
)
|
15
|
-
|
16
|
-
puts res.inspect
|
17
13
|
end
|
18
14
|
|
19
15
|
def tag(value)
|
@@ -45,6 +41,5 @@ module SendhubMethods
|
|
45
41
|
end
|
46
42
|
|
47
43
|
class ActionMailer::Base
|
48
|
-
puts "***** MOOOOO *****"
|
49
44
|
include SendhubMethods
|
50
45
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sendhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Taylor
|
@@ -9,10 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-08-
|
12
|
+
date: 2010-08-10 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: json
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.1.9
|
24
|
+
version:
|
16
25
|
description: sendhub is a Ruby client library for SendHub.net.
|
17
26
|
email: moomerman@gmail.com
|
18
27
|
executables: []
|
@@ -56,7 +65,7 @@ requirements: []
|
|
56
65
|
rubyforge_project: sendhub
|
57
66
|
rubygems_version: 1.3.5
|
58
67
|
signing_key:
|
59
|
-
specification_version:
|
68
|
+
specification_version: 2
|
60
69
|
summary: sendhub is a Ruby client library for SendHub.net.
|
61
70
|
test_files: []
|
62
71
|
|