File: github-markdown.gemspec

package info (click to toggle)
ruby-github-markdown 0.6.9-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 312 kB
  • sloc: ansic: 3,577; ruby: 96; makefile: 6
file content (39 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download | duplicates (2)
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
# encoding: utf-8
Gem::Specification.new do |s|
  s.name = 'github-markdown'
  s.version = '0.6.9'
  s.summary = 'THIS GEM IS NOT MAINTAINED AND NOT SUPPORTED. The Markdown parser for GitHub.com'
  s.description = 'THIS GEM IS NOT MAINTAINED AND NOT SUPPORTED. Self-contained Markdown parser for GitHub, with all our custom extensions'
  s.license = 'MIT'
  s.authors = ['GitHub, Inc']
  # = MANIFEST =
  s.files = %w[
    Rakefile
    bin/gfm
    ext/markdown/autolink.c
    ext/markdown/autolink.h
    ext/markdown/buffer.c
    ext/markdown/buffer.h
    ext/markdown/extconf.rb
    ext/markdown/gh-markdown.c
    ext/markdown/houdini.h
    ext/markdown/houdini_href_e.c
    ext/markdown/houdini_html_e.c
    ext/markdown/html.c
    ext/markdown/html.h
    ext/markdown/html_blocks.h
    ext/markdown/markdown.c
    ext/markdown/markdown.h
    ext/markdown/plaintext.c
    ext/markdown/plaintext.h
    ext/markdown/stack.c
    ext/markdown/stack.h
    github-markdown.gemspec
    lib/github/markdown.rb
    test/gfm_test.rb
  ]
  # = MANIFEST =
  s.test_files = ["test/gfm_test.rb"]
  s.extensions = ["ext/markdown/extconf.rb"]
  s.require_paths = ["lib"]
end