-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocface.gemspec
23 lines (20 loc) · 912 Bytes
/
docface.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.join(File.dirname(__FILE__), 'lib', 'docface', 'version')
Gem::Specification.new do |s|
s.name = 'docface'
s.version = DocFace::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "A markdown documentation generator/viewer."
s.description = "A markdown documentation generator/viewer. View your markdown files as a structured website."
s.authors = ["Bryan Brandau"]
s.email = '[email protected]'
s.has_rdoc = false
s.licenses = ['APACHE']
s.homepage ='http://github.com/agent462/docface'
s.add_dependency('rainbow', '1.1.4')
s.add_dependency('trollop', '2.0')
s.add_dependency('kramdown', '1.0.1')
s.add_dependency('coderay', '1.0.9')
s.files = Dir.glob('{public,bin,lib}/**/*') + %w[docface.gemspec README.md]
s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) }
s.require_paths = ['lib']
end