-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanoc-tilt.gemspec
23 lines (19 loc) · 1.07 KB
/
nanoc-tilt.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "nanoc-tilt/version"
Gem::Specification.new do |s|
s.name = "nanoc-tilt"
s.version = Nanoc::Tilt::VERSION
s.authors = ["Jake Benilov"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/benilovj/nanoc-tilt"
s.summary = %q{A filter for the nanoc (https://github.com/ddfreyne/nanoc), a static page generator, that lets you render your files with tilt (https://github.com/rtomayko/tilt)}
s.description = %q{This gem delivers a nanoc filter that allows the user to use tilt (https://github.com/rtomayko/tilt). Tilt is a wrapper around several Ruby template engines, which picks the correct one based on the source filename. }
s.rubyforge_project = "nanoc-tilt"
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.add_dependency "nanoc3"
s.add_dependency "tilt"
end