File: roadie.gemspec

package info (click to toggle)
ruby-roadie 5.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: ruby: 3,418; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 1,078 bytes parent folder | download
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
# 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 = ["magnus.bergmark@gmail.com"]
  s.homepage = "http://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"
  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")
end