forked from bhollis/maruku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maruku.gemspec
34 lines (27 loc) · 1.04 KB
/
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
($LOAD_PATH << File.expand_path("../lib", __FILE__)).uniq!
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.license = 'GPL-2'
s.authors = ["Andrea Censi", "Nathan Weizenbaum"]
s.email = "ben@benhollis.net"
s.homepage = "http://github.com/bhollis/maruku"
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.add_dependency('nokogiri', '~> 1.5')
s.add_development_dependency('syntax', '~> 1.0.0')
s.add_development_dependency('rake', '~> 0.9.2')
s.add_development_dependency('rspec', '~> 2.6.0')
s.add_development_dependency('yard', '~> 0.7.2')
end