-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathred_rug.gemspec
39 lines (36 loc) · 1.25 KB
/
red_rug.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
37
38
39
load 'lib/red_rug.rb'
Gem::Specification.new do |s|
s.name = 'redrug'
s.version = RedRug.version
s.authors = ['Chad Perrin']
s.date = '2015-08-19'
s.description = <<-EOF
RedRug is a wrapper for Redcarpet, intended to provide more convenient
interfaces for common Markdown parsing use cases.
EOF
s.summary = 'RedRug - Simple Markdown Interface'
s.email = '[email protected]'
s.files = [
'COPYING',
'LICENSE',
'README.md',
'lib/red_rug.rb',
'bin/redrug',
'spec/red_rug_spec.rb',
'spec/spec_helper.rb'
]
s.homepage = 'http://fossrec.com/u/apotheon/redrug'
s.has_rdoc = true
s.license = 'DPL'
s.bindir = 'bin'
s.executables = ['redrug']
s.post_install_message = <<-EOF
Thank you for using RedRug. Require "red_rug" to load this library.
The "redrug" command line utility takes a filename argument and outputs
the contents of the file translated from Markdown to HTML. Usage and
option help for it can be had via the "-h" option.
EOF
s.required_ruby_version = '>= 1.9.2'
s.add_runtime_dependency 'redcarpet'
s.add_runtime_dependency 'versionize'
end