forked from premailer/premailer
-
Notifications
You must be signed in to change notification settings - Fork 8
/
premailer.gemspec
31 lines (27 loc) · 1.32 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
26
27
28
29
30
GEM_ROOT = File.dirname(__FILE__).freeze unless defined?(GEM_ROOT)
lib_path = File.expand_path('lib', GEM_ROOT)
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include? lib_path
require 'premailer/version'
Gem::Specification.new do |s|
s.name = "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 "bundler", "~> 1.3"
s.add_development_dependency('rake', ['~> 0.8', '!= 0.9.0'])
s.add_development_dependency('hpricot', '>= 0.8.3')
s.add_development_dependency('nokogiri', '>= 1.4.4')
s.add_development_dependency('yard', '~> 0.8.7')
s.add_development_dependency('redcarpet', '~> 3.0')
s.add_development_dependency "yard-redcarpet-ext", "~> 0.0.3"
end