[DRE-commits] [asciidoctor] branch master updated (2594b6d -> 936b2f5)
Jérémy Bobbio
lunar at alioth.debian.org
Sun Nov 3 11:41:30 UTC 2013
This is an automated email from the git hooks/post-receive script.
lunar pushed a change to branch master
in repository asciidoctor.
from 2594b6d Add git-buildpackage configuration
adds 88e6d5b Imported Upstream version 0.1.4
new 5ad5543 Merge tag 'upstream/0.1.4'
new 4e3e035 Update Build-Depends
new a288dee Update and simply extended description
new 308369e Install upstream changelog
new d15fcff Stop patching out the 'pending' gem as upstream does not use it anymore
new 22d74e6 No need to comment out 'rubygems' anymore
new 619f679 Add a patch to remove tests requiring network access
new 936b2f5 Release version 0.1.4-1
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 4 +
.travis.yml | 14 +
CHANGELOG.adoc | 387 +++++
README.adoc | 706 ++++----
asciidoctor.gemspec | 39 +-
bin/asciidoctor | 3 +
bin/asciidoctor-safe | 3 +
compat/asciidoc.conf | 80 +-
debian/changelog | 15 +-
debian/control | 20 +-
.../0001-Do-not-use-pending-gem-in-tests.patch | 19 -
.../0002-Comment-out-rubygems-require.patch | 17 -
.../prune_tests_requiring_network_access.patch | 27 +
debian/patches/series | 3 +-
debian/rules | 3 +
lib/asciidoctor.rb | 253 ++-
lib/asciidoctor/abstract_block.rb | 232 +--
lib/asciidoctor/abstract_node.rb | 134 +-
lib/asciidoctor/attribute_list.rb | 2 +-
lib/asciidoctor/backends/_stylesheets.rb | 266 ++-
lib/asciidoctor/backends/base_template.rb | 33 +-
lib/asciidoctor/backends/docbook45.rb | 321 ++--
lib/asciidoctor/backends/docbook5.rb | 103 ++
lib/asciidoctor/backends/html5.rb | 1107 ++++++++-----
lib/asciidoctor/block.rb | 98 +-
lib/asciidoctor/cli/invoker.rb | 61 +-
lib/asciidoctor/cli/options.rb | 86 +-
lib/asciidoctor/debug.rb | 2 +-
lib/asciidoctor/document.rb | 365 ++--
lib/asciidoctor/extensions.rb | 443 +++++
lib/asciidoctor/helpers.rb | 44 +-
lib/asciidoctor/inline.rb | 10 +-
lib/asciidoctor/lexer.rb | 782 ++++++---
lib/asciidoctor/{list_item.rb => list.rb} | 46 +-
lib/asciidoctor/path_resolver.rb | 30 +-
lib/asciidoctor/reader.rb | 1269 +++++++++-----
lib/asciidoctor/renderer.rb | 170 +-
lib/asciidoctor/section.rb | 96 +-
lib/asciidoctor/substituters.rb | 487 ++++--
lib/asciidoctor/table.rb | 70 +-
lib/asciidoctor/version.rb | 2 +-
man/asciidoctor.1 | 128 +-
man/{asciidoctor.ad => asciidoctor.adoc} | 105 +-
test/attributes_test.rb | 227 ++-
test/blocks_test.rb | 383 ++++-
test/document_test.rb | 577 ++++++-
test/extensions_test.rb | 448 +++++
test/fixtures/basic-docinfo-footer.html | 6 +
test/fixtures/basic-docinfo-footer.xml | 8 +
test/fixtures/basic-docinfo.xml | 6 +-
test/fixtures/basic.asciidoc | 1 +
test/fixtures/child-include.adoc | 5 +
.../haml/docbook45/block_paragraph.xml.haml | 6 +
.../haml/html5-tweaks/block_paragraph.html.haml | 1 +
.../haml/html5/block_paragraph.html.haml | 3 +
.../haml/html5/block_sidebar.html.haml | 5 +
.../slim/docbook45/block_paragraph.xml.slim | 6 +
.../slim/html5/block_paragraph.html.slim | 3 +
.../slim/html5/block_sidebar.html.slim | 5 +
test/fixtures/docinfo-footer.html | 1 +
test/fixtures/docinfo-footer.xml | 9 +
test/fixtures/docinfo.xml | 1 +
test/fixtures/grandchild-include.adoc | 3 +
test/fixtures/parent-include-restricted.adoc | 5 +
test/fixtures/parent-include.adoc | 5 +
test/invoker_test.rb | 90 +-
test/lexer_test.rb | 24 +-
test/links_test.rb | 36 +-
test/lists_test.rb | 311 +++-
test/options_test.rb | 22 +-
test/paragraphs_test.rb | 13 +
test/paths_test.rb | 22 +
test/preamble_test.rb | 20 +
test/reader_test.rb | 1740 ++++++++++++--------
test/renderer_test.rb | 164 +-
test/sections_test.rb | 493 +++++-
test/substitutions_test.rb | 477 ++++--
test/tables_test.rb | 113 +-
test/test_helper.rb | 92 +-
test/text_test.rb | 122 +-
80 files changed, 9889 insertions(+), 3649 deletions(-)
create mode 100644 .gitignore
create mode 100644 .travis.yml
create mode 100644 CHANGELOG.adoc
delete mode 100644 debian/patches/0001-Do-not-use-pending-gem-in-tests.patch
delete mode 100644 debian/patches/0002-Comment-out-rubygems-require.patch
create mode 100644 debian/patches/prune_tests_requiring_network_access.patch
create mode 100644 lib/asciidoctor/backends/docbook5.rb
create mode 100644 lib/asciidoctor/extensions.rb
rename lib/asciidoctor/{list_item.rb => list.rb} (61%)
rename man/{asciidoctor.ad => asciidoctor.adoc} (62%)
create mode 100644 test/extensions_test.rb
create mode 100644 test/fixtures/basic-docinfo-footer.html
create mode 100644 test/fixtures/basic-docinfo-footer.xml
create mode 100644 test/fixtures/child-include.adoc
create mode 100644 test/fixtures/custom-backends/haml/docbook45/block_paragraph.xml.haml
create mode 100644 test/fixtures/custom-backends/haml/html5-tweaks/block_paragraph.html.haml
create mode 100644 test/fixtures/custom-backends/haml/html5/block_paragraph.html.haml
create mode 100644 test/fixtures/custom-backends/haml/html5/block_sidebar.html.haml
create mode 100644 test/fixtures/custom-backends/slim/docbook45/block_paragraph.xml.slim
create mode 100644 test/fixtures/custom-backends/slim/html5/block_paragraph.html.slim
create mode 100644 test/fixtures/custom-backends/slim/html5/block_sidebar.html.slim
create mode 100644 test/fixtures/docinfo-footer.html
create mode 100644 test/fixtures/docinfo-footer.xml
create mode 100644 test/fixtures/grandchild-include.adoc
create mode 100644 test/fixtures/parent-include-restricted.adoc
create mode 100644 test/fixtures/parent-include.adoc
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/asciidoctor.git
More information about the Pkg-ruby-extras-commits
mailing list