forked from slim-template/html2slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html2slim.gemspec
24 lines (22 loc) · 995 Bytes
/
html2slim.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/html2slim/version", __FILE__)
require "date"
Gem::Specification.new do |s|
s.name = "html2slim"
s.version = HTML2Slim::VERSION
s.date = Date.today.to_s
s.authors = ["Maiz Lulkin"]
s.email = ["maiz@lulk.in"]
s.summary = %q{HTML to Slim converter.}
s.description = %q{Convert HTML to Slim templates. Because HTML sux and Slim rules. That's why.}
s.homepage = %q{https://github.com/slim-template/html2slim}
s.extra_rdoc_files = ["README.md"]
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.files = `git ls-files -- lib/* bin/* README.md`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_dependency "hpricot"
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency "slim", [">= 1.0.0"]
end