mdarby-mq 0.1 → 0.1.1
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/README.textile +29 -0
- data/mq.gemspec +2 -2
- metadata +2 -2
- data/README +0 -13
data/README.textile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
h2. mq
|
|
2
|
+
|
|
3
|
+
A Rails gem that generates an MVC stack that does email queuing
|
|
4
|
+
|
|
5
|
+
h3. What it does
|
|
6
|
+
|
|
7
|
+
I got tire of crappy attempts at queuing emails, so I wrote my own. mq is a generator that generates an MVC stack for queuing emails. It has a UI too.
|
|
8
|
+
|
|
9
|
+
h3. Requirements
|
|
10
|
+
|
|
11
|
+
An existing Mailer
|
|
12
|
+
|
|
13
|
+
h3. How to Install
|
|
14
|
+
|
|
15
|
+
<pre>sudo gem install mdarby-mq</pre>
|
|
16
|
+
|
|
17
|
+
h3. How to Use
|
|
18
|
+
|
|
19
|
+
<pre>./script/generate mq EmailModelName MailerModelName</pre>
|
|
20
|
+
|
|
21
|
+
h3. How to Test
|
|
22
|
+
|
|
23
|
+
Complete Rspec specs are included automatically. Well, complete aside from view specs as you'll just change the damned things anyway.
|
|
24
|
+
|
|
25
|
+
h3. About the Author
|
|
26
|
+
|
|
27
|
+
My name is Matt Darby. I'm the Lead Web Developer and IT Manager at "Dynamix Engineering":http://dynamix-ltd.com and hold a Master's Degree in Computer Science from "Franklin University":http://franklin.edu in Columbus, OH.
|
|
28
|
+
|
|
29
|
+
Feel free to check out my "blog":http://blog.matt-darby.com or to "recommend me":http://www.workingwithrails.com/recommendation/new/person/10908-matt-darby
|
data/mq.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "mq"
|
|
3
|
-
s.version = "0.1"
|
|
3
|
+
s.version = "0.1.1"
|
|
4
4
|
s.date = "2009-02-11"
|
|
5
5
|
s.summary = "An email queue that actually works"
|
|
6
6
|
s.email = "matt@matt-darby.com"
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.authors = ["Matt Darby"]
|
|
11
11
|
s.files = [
|
|
12
12
|
"MIT-LICENSE",
|
|
13
|
-
"README",
|
|
13
|
+
"README.textile",
|
|
14
14
|
"Rakefile",
|
|
15
15
|
"generators/mq/mq_generator.rb",
|
|
16
16
|
"generators/mq/templates/create_email_table.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mdarby-mq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Darby
|
|
@@ -23,7 +23,7 @@ extra_rdoc_files: []
|
|
|
23
23
|
|
|
24
24
|
files:
|
|
25
25
|
- MIT-LICENSE
|
|
26
|
-
- README
|
|
26
|
+
- README.textile
|
|
27
27
|
- Rakefile
|
|
28
28
|
- generators/mq/mq_generator.rb
|
|
29
29
|
- generators/mq/templates/create_email_table.rb
|