public
Description: Discount (For Ruby) Implementation of John Gruber's Markdown
Homepage: http://github.com/rtomayko/rdiscount/
Clone URL: git://github.com/rtomayko/rdiscount.git
rdiscount / rdiscount.gemspec
100644 47 lines (46 sloc) 1.091 kb
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
40
41
42
43
44
45
46
47
Gem::Specification.new do |s|
  s.name = 'rdiscount'
  s.version = '1.3.5'
  s.summary = "Fast Implementation of Gruber's Markdown in C"
  s.date = '2009-07-26'
  s.email = 'r@tomayko.com'
  s.homepage = 'http://github.com/rtomayko/rdiscount'
  s.has_rdoc = true
  s.authors = ["Ryan Tomayko", "Andrew White"]
  # = MANIFEST =
  s.files = %w[
COPYING
README.markdown
Rakefile
bin/rdiscount
ext/Csio.c
ext/amalloc.h
ext/config.h
ext/cstring.h
ext/docheader.c
ext/dumptree.c
ext/extconf.rb
ext/generate.c
ext/markdown.c
ext/markdown.h
ext/mkdio.c
ext/mkdio.h
ext/rdiscount.c
ext/resource.c
ext/toc.c
lib/markdown.rb
lib/rdiscount.rb
rdiscount.gemspec
test/benchmark.rb
test/benchmark.txt
test/markdown_test.rb
test/rdiscount_test.rb
]
  # = MANIFEST =
  s.test_files = ["test/markdown_test.rb", "test/rdiscount_test.rb"]
  s.extra_rdoc_files = ["COPYING"]
  s.extensions = ["ext/extconf.rb"]
  s.executables = ["rdiscount"]
  s.require_paths = ["lib"]
  s.rubyforge_project = 'wink'
end