forked from thewoolleyman/textile2markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextile2markdown.gemspec
36 lines (34 loc) · 1.18 KB
/
textile2markdown.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
Gem::Specification.new do |s|
s.name = %q{textile2markdown}
s.version = "0.0.2"
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Chad Woolley"]
s.date = %q{2008-09-06}
s.description = %q{Converts Textile files to Markdown}
s.email = %q{thewoolleyman@gmail.com}
s.extra_rdoc_files = [
"Manifest",
"README.txt",
"bin/textile2markdown",
"lib/textile2markdown.rb",
"test/expected.markdown",
"test/testfile",
"test/textile2markdown_test.rb"]
s.files = [
"Manifest",
"README.txt",
"bin/textile2markdown",
"lib/textile2markdown.rb",
"test/expected.markdown",
"test/testfile",
"test/textile2markdown_test.rb"]
s.has_rdoc = true
s.homepage = %q{http://textile2markdown.rubyforge.org}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Textile2Markdown", "--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{textile2markdwn}
s.rubygems_version = %q{1.2.0}
s.summary = %q{Converts Textile files to Markdown.}
s.executables = ['textile2markdown']
end