-
Notifications
You must be signed in to change notification settings - Fork 6
/
pith.gemspec
34 lines (26 loc) · 1.05 KB
/
pith.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
$: << File.expand_path("../lib", __FILE__)
require "pith/version"
description = <<TEXT
Pith builds static websites, using markup/template languages including Haml, Sass, ERb, Liquid, Markdown and Textile.
TEXT
Gem::Specification.new do |gem|
gem.name = "pith"
gem.summary = "A static website generator"
gem.description = description
gem.homepage = "http://github.com/mdub/pith"
gem.authors = ["Mike Williams"]
gem.email = "[email protected]"
gem.license = "MIT"
gem.version = Pith::VERSION.dup
gem.platform = Gem::Platform::RUBY
gem.add_runtime_dependency("tilt", "~> 2.0")
gem.add_runtime_dependency("rack", ">= 2.0")
gem.add_runtime_dependency("thin", ">= 1.7.0")
gem.add_runtime_dependency("clamp", ">= 1.2.1")
gem.add_runtime_dependency("listen", ">= 3.1")
gem.add_runtime_dependency("rack-livejs", ">= 0.2.1")
gem.require_path = "lib"
gem.files = Dir["lib/**/*", "sample/**/*", "README.markdown", "LICENSE"]
gem.test_files = Dir["Rakefile", "spec/**/*", "features/**/*", "cucumber.yml"]
gem.executables = ["pith"]
end