forked from nanoc/nanoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanoc.gemspec
30 lines (23 loc) · 1.18 KB
/
nanoc.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
# encoding: utf-8
$LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__))
require 'nanoc/version'
Gem::Specification.new do |s|
s.name = 'nanoc'
s.version = Nanoc::VERSION
s.homepage = 'http://nanoc.ws/'
s.summary = 'a web publishing system written in Ruby for building small to medium-sized websites.'
s.description = 'nanoc is a simple but very flexible static site generator written in Ruby. It operates on local files, and therefore does not run on the server. nanoc “compiles” the local source files into HTML (usually), by evaluating eRuby, Markdown, etc.'
s.author = 'Denis Defreyne'
s.email = '[email protected]'
s.license = 'MIT'
s.files = Dir['[A-Z]*'] +
Dir['doc/yardoc_{templates,handlers}/**/*'] +
Dir['{bin,lib,tasks,test}/**/*'] +
[ 'nanoc.gemspec' ]
s.executables = [ 'nanoc' ]
s.require_paths = [ 'lib' ]
s.rdoc_options = [ '--main', 'README.md' ]
s.extra_rdoc_files = [ 'ChangeLog', 'LICENSE', 'README.md', 'NEWS.md' ]
s.add_runtime_dependency('cri', '~> 2.3')
s.add_development_dependency('bundler', '~> 1.5')
end