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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
## This is the rakegem gemspec template. Make sure you read and understand
## all of the comments. Some sections require modification, and others can
## be deleted if you don't need them. Once you understand the contents of
## this file, feel free to delete any comments that begin with two hash marks.
## You can find comprehensive Gem::Specification documentation, at
## http://docs.rubygems.org/read/chapter/20
Gem::Specification.new do |s|
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.rubygems_version = '1.8.5'
## This group of properties is updated automatically by the Rake build when
## cutting a new release (see the validate task)
s.name = 'asciidoctor'
s.version = '0.1.2.cr'
s.date = '2013-04-25'
s.rubyforge_project = 'asciidoctor'
## Make sure your summary is short. The description may be as long
## as you like.
s.summary = 'A native Ruby AsciiDoc syntax processor and publishing toolchain'
s.description = <<-EOS
An open source text processor and publishing toolchain, written entirely in Ruby, for converting AsciiDoc markup into HTML 5, DocBook 4.5 and other formats.
EOS
s.license = 'MIT'
## List the primary authors. If there are a bunch of authors, it's probably
## better to set the email to an email list or something. If you don't have
## a custom homepage, consider using your GitHub URL or the like.
s.authors = ['Ryan Waldron', 'Dan Allen', 'Jeremy McAnally', 'Jason Porter']
s.email = ['rew@erebor.com', 'dan.j.allen@gmail.com']
s.homepage = 'http://asciidoctor.org'
## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
s.require_paths = %w[lib]
## If your gem includes any executables, list them here.
s.executables = ['asciidoctor', 'asciidoctor-safe']
## Specify any RDoc options here. You'll want to add your README and
## LICENSE files to the extra_rdoc_files list.
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = %w[LICENSE]
## List your runtime dependencies here. Runtime dependencies are those
## that are needed for an end user to actually USE your code.
## List your development dependencies here. Development dependencies are
## those that are only needed during development
s.add_development_dependency('coderay')
s.add_development_dependency('erubis')
s.add_development_dependency('htmlentities')
s.add_development_dependency('mocha')
s.add_development_dependency('nokogiri')
s.add_development_dependency('pending')
s.add_development_dependency('rake')
s.add_development_dependency('rdoc', '~> 3.12')
s.add_development_dependency('tilt')
## Leave this section as-is. It will be automatically generated from the
## contents of your Git repository via the gemspec task. DO NOT REMOVE
## THE MANIFEST COMMENTS, they are used as delimiters by the task.
# = MANIFEST =
s.files = %w[
Gemfile
LICENSE
README.adoc
Rakefile
asciidoctor.gemspec
bin/asciidoctor
bin/asciidoctor-safe
compat/asciidoc.conf
lib/asciidoctor.rb
lib/asciidoctor/abstract_block.rb
lib/asciidoctor/abstract_node.rb
lib/asciidoctor/attribute_list.rb
lib/asciidoctor/backends/base_template.rb
lib/asciidoctor/backends/docbook45.rb
lib/asciidoctor/backends/html5.rb
lib/asciidoctor/block.rb
lib/asciidoctor/callouts.rb
lib/asciidoctor/cli/invoker.rb
lib/asciidoctor/cli/options.rb
lib/asciidoctor/debug.rb
lib/asciidoctor/document.rb
lib/asciidoctor/helpers.rb
lib/asciidoctor/inline.rb
lib/asciidoctor/lexer.rb
lib/asciidoctor/list_item.rb
lib/asciidoctor/path_resolver.rb
lib/asciidoctor/reader.rb
lib/asciidoctor/renderer.rb
lib/asciidoctor/section.rb
lib/asciidoctor/substituters.rb
lib/asciidoctor/table.rb
lib/asciidoctor/version.rb
man/asciidoctor.1
man/asciidoctor.ad
stylesheets/asciidoctor.css
test/attributes_test.rb
test/blocks_test.rb
test/document_test.rb
test/fixtures/asciidoc.txt
test/fixtures/asciidoc_index.txt
test/fixtures/ascshort.txt
test/fixtures/basic-docinfo.html
test/fixtures/basic-docinfo.xml
test/fixtures/basic.asciidoc
test/fixtures/docinfo.html
test/fixtures/docinfo.xml
test/fixtures/dot.gif
test/fixtures/encoding.asciidoc
test/fixtures/include-file.asciidoc
test/fixtures/list_elements.asciidoc
test/fixtures/sample.asciidoc
test/fixtures/stylesheets/custom.css
test/fixtures/tip.gif
test/invoker_test.rb
test/lexer_test.rb
test/links_test.rb
test/lists_test.rb
test/options_test.rb
test/paragraphs_test.rb
test/paths_test.rb
test/preamble_test.rb
test/reader_test.rb
test/renderer_test.rb
test/sections_test.rb
test/substitutions_test.rb
test/tables_test.rb
test/test_helper.rb
test/text_test.rb
]
# = MANIFEST =
## Test files will be grabbed from the file list. Make sure the path glob
## matches what you actually use.
s.test_files = s.files.select { |path| path =~ /^test\/.*_test\.rb/ }
end
|