forked from schacon/git-scribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-scribe.gemspec
36 lines (30 loc) · 1.23 KB
/
git-scribe.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
35
36
$LOAD_PATH.unshift 'lib'
require 'git-scribe/version'
files = `git ls-files`.
split("\n").
sort
# piece file back together and write...
Gem::Specification.new do |s|
s.name = "git-scribe"
s.version = GitScribe::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "git-scribe is an authors toolkit for writing and publishing books"
s.homepage = "http://github.com/schacon/git-scribe"
s.email = "[email protected]"
s.authors = [ "Scott Chacon" ]
s.has_rdoc = false
s.files = files
s.add_dependency('nokogiri')
s.add_dependency('liquid')
s.add_development_dependency("rake")
s.add_development_dependency("test-unit")
s.executables = %w( git-scribe )
s.description = <<desc
git-scribe is a workflow tool for starting, writing, reviewing and publishing
multiple forms of a book. it allows you to use asciidoc plain text markup to
write, review and translate a work and provides a simple toolkit for generating
common digital outputs for publishing - epub, mobi, pdf and html. it is also
integrated into github functionality, letting you automate the publishing and
collaboration process.
desc
end