-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss_inliner.gemspec
31 lines (27 loc) · 1.1 KB
/
css_inliner.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
$:.push File.expand_path("../lib", __FILE__)
require "css_inliner/version"
Gem::Specification.new do |s|
s.name = "css_inliner"
s.version = CSSInliner::VERSION
s.authors = ["KITAITI Makoto"]
s.email = ["KitaitiMakoto@gmail.com"]
s.homepage = "https://github.com/KitaitiMakoto/css_inliner"
s.summary = %q{inline CSS into HTML attribute of elements}
s.description = %q{
inline CSS from external file(s) and/or style elment(s) in head element
into style attibute of HTML elements
}
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.require_paths = ["lib"]
s.has_rdoc = 'yard'
s.add_runtime_dependency "nokogiri", '~> 1'
s.add_runtime_dependency "csspool", '~> 3'
s.add_runtime_dependency "bsearch"
s.add_development_dependency "test-unit-full"
s.add_development_dependency "yard"
s.add_development_dependency "pry"
s.add_development_dependency "pry-doc"
s.add_development_dependency "guard-test"
end