forked from fphilipe/premailer-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
premailer-rails.gemspec
32 lines (27 loc) · 1.35 KB
/
premailer-rails.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
31
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "premailer/rails/version"
Gem::Specification.new do |s|
s.name = "premailer-rails"
s.version = Premailer::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ["Philipe Fatio"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/fphilipe/premailer-rails"
s.summary = %q{Easily create styled HTML emails in Rails.}
s.description = %q{This gem brings you the power of the premailer gem to Rails
without any configuration needs. Create HTML emails,
include a CSS file as you do in a normal HTML document and
premailer will inline the included CSS.}
s.metadata["changelog_uri"] = "https://github.com/fphilipe/premailer-rails/blob/v#{Premailer::Rails::VERSION}/CHANGELOG.md"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {example,spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'premailer', '~> 1.7', '>= 1.7.9'
s.add_dependency 'actionmailer', '>= 3'
s.add_dependency 'net-smtp' if RUBY_VERSION >= '3'
s.add_development_dependency 'rspec', '~> 3.3'
s.add_development_dependency 'nokogiri'
end