-
Notifications
You must be signed in to change notification settings - Fork 58
/
htmlbeautifier.gemspec
26 lines (20 loc) · 1017 Bytes
/
htmlbeautifier.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
require File.expand_path("../lib/htmlbeautifier/version", __FILE__)
spec = Gem::Specification.new do |s|
s.name = "htmlbeautifier"
s.version = HtmlBeautifier::VERSION::STRING
s.summary = "HTML/ERB beautifier"
s.description = "A normaliser/beautifier for HTML that also understands embedded Ruby."
s.author = "Paul Battley"
s.email = "[email protected]"
s.homepage = "http://github.com/threedaymonk/htmlbeautifier"
s.license = "MIT"
s.files = %w(Rakefile README.md) + Dir.glob("{bin,test,lib}/**/*")
s.executables = Dir["bin/**"].map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.6.0'
s.add_development_dependency "rake", "~> 13"
s.add_development_dependency "rspec", "~> 3"
s.add_development_dependency "standard", "~> 1.33"
s.add_development_dependency "rubocop-rspec", "~> 2"
s.add_development_dependency "rubocop-rake", "~> 0.6"
end