forked from zombocom/maildown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maildown.gemspec
26 lines (21 loc) · 921 Bytes
/
maildown.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "maildown/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "maildown"
s.version = Maildown::VERSION
s.authors = ["schneems"]
s.email = ["[email protected]"]
s.homepage = "https://www.github.com/schneems/maildown"
s.summary = "Markdown in your mailbox"
s.description = "Best practice is to send text/plain && text/html markdown works great for both, so why write your templates twices?"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "actionmailer", ">= 4.0.0"
s.add_dependency "kramdown"
s.add_development_dependency "railties"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rake"
end