forked from regru/premailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
premailer.gemspec
26 lines (23 loc) · 1.11 KB
/
premailer.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
$LOAD_PATH.unshift(File.expand_path('./lib', File.dirname(__FILE__)))
require 'premailer/version'
Gem::Specification.new do |s|
s.name = "regru-premailer"
s.version = Premailer::VERSION.dup
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Preflight for HTML e-mail."
s.email = "[email protected]"
s.homepage = "http://premailer.dialect.ca/"
s.description = "Improve the rendering of HTML emails by making CSS inline, converting links and warning about unsupported code."
s.has_rdoc = true
s.author = "Alex Dunae"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.add_dependency('css_parser', '>= 1.1.9')
s.add_dependency('htmlentities', '>= 4.0.0')
s.add_development_dependency('hpricot', '>= 0.8.3')
s.add_development_dependency('nokogiri', '>= 1.4.4')
s.add_development_dependency('rake', ['~> 0.8', '!= 0.9.0'])
s.add_development_dependency('yard', '~> 0.7.3')
s.add_development_dependency('redcarpet', '~> 1.17.2')
end