-
Notifications
You must be signed in to change notification settings - Fork 85
/
roadie.gemspec
35 lines (27 loc) · 1.15 KB
/
roadie.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
33
34
35
# roadie.gemspec
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "roadie/version"
Gem::Specification.new do |s|
s.name = "roadie"
s.version = Roadie::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Magnus Bergmark"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/Mange/roadie"
s.summary = "Making HTML emails comfortable for the Ruby rockstars"
s.description = "Roadie tries to make sending HTML emails a little less painful by inlining stylesheets and rewriting relative URLs for you."
s.license = "MIT"
s.required_ruby_version = ">= 2.7"
s.add_dependency "nokogiri", "~> 1.15"
s.add_dependency "css_parser", "~> 1.4"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rspec-collection_matchers", "~> 1.0"
s.add_development_dependency "webmock", "~> 3.0"
s.add_development_dependency "standardrb"
s.extra_rdoc_files = %w[README.md Changelog.md]
s.require_paths = %w[lib]
s.files = `git ls-files`.split("\n")
s.post_install_message = "This would be the last version that supports ruby 2.7"
end