forked from bhollis/maruku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maruku.gemspec
36 lines (28 loc) · 1016 Bytes
/
maruku.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'maruku/version'
Gem::Specification.new do |s|
s.name = 'maruku'
s.version = MaRuKu::Version
s.summary = "Maruku is a Markdown-superset interpreter written in Ruby."
s.description = %{Maruku is a Markdown interpreter in Ruby.
It features native export to HTML and PDF (via Latex). The
output is really beautiful!
}
s.files = Dir['lib/**/*.rb'] + Dir['lib/*.rb'] +
Dir['docs/*.md'] + Dir['docs/*.html'] +
Dir['spec/**/*.rb'] + Dir['spec/**/*.md'] +
Dir['bin/*'] + ['Rakefile']
s.bindir = 'bin'
s.executables = ['maruku','marutex']
s.require_path = 'lib'
s.autorequire = 'maruku'
s.add_dependency('syntax', '>= 1.0.0')
s.author = "Andrea Censi"
s.email = "[email protected]"
s.homepage = "http://maruku.rubyforge.org"
end
# s.has_rdoc = true
# s.extra_rdoc_files = Dir['[A-Z]*']
# s.rdoc_options << '--title' << 'Builder -- Easy XML Building'