Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make builds minimal #1719

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 0 additions & 130 deletions Manifest.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,7 @@
.autotest
.cross_rubies
.editorconfig
.gemtest
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
C_CODING_STYLE.rdoc
Gemfile
Gemfile-libxml-ruby
LICENSE-DEPENDENCIES.md
LICENSE.md
Manifest.txt
README.md
ROADMAP.md
Rakefile
SECURITY.md
STANDARD_RESPONSES.md
Y_U_NO_GEMSPEC.md
appveyor.yml
bin/nokogiri
build_all
dependencies.yml
ext/java/nokogiri/EncodingHandler.java
ext/java/nokogiri/HtmlDocument.java
Expand Down Expand Up @@ -257,115 +239,3 @@ patches/libxml2/0003-Fix-infinite-loop-in-LZMA-decompression.patch
patches/sort-patches-by-date
suppressions/README.txt
suppressions/nokogiri_ruby-2.supp
tasks/test.rb
test/css/test_nthiness.rb
test/css/test_parser.rb
test/css/test_tokenizer.rb
test/css/test_xpath_visitor.rb
test/decorators/test_slop.rb
test/files/2ch.html
test/files/GH_1042.html
test/files/address_book.rlx
test/files/address_book.xml
test/files/atom.xml
test/files/bar/bar.xsd
test/files/bogus.xml
test/files/dont_hurt_em_why.xml
test/files/encoding.html
test/files/encoding.xhtml
test/files/exslt.xml
test/files/exslt.xslt
test/files/foo/foo.xsd
test/files/metacharset.html
test/files/namespace_pressure_test.xml
test/files/noencoding.html
test/files/po.xml
test/files/po.xsd
test/files/saml/saml20assertion_schema.xsd
test/files/saml/saml20protocol_schema.xsd
test/files/saml/xenc_schema.xsd
test/files/saml/xmldsig_schema.xsd
test/files/shift_jis.html
test/files/shift_jis.xml
test/files/shift_jis_no_charset.html
test/files/slow-xpath.xml
test/files/snuggles.xml
test/files/staff.dtd
test/files/staff.xml
test/files/staff.xslt
test/files/test_document_url/bar.xml
test/files/test_document_url/document.dtd
test/files/test_document_url/document.xml
test/files/tlm.html
test/files/to_be_xincluded.xml
test/files/valid_bar.xml
test/files/xinclude.xml
test/helper.rb
test/html/sax/test_parser.rb
test/html/sax/test_parser_context.rb
test/html/sax/test_parser_text.rb
test/html/sax/test_push_parser.rb
test/html/test_attributes.rb
test/html/test_builder.rb
test/html/test_document.rb
test/html/test_document_encoding.rb
test/html/test_document_fragment.rb
test/html/test_element_description.rb
test/html/test_named_characters.rb
test/html/test_node.rb
test/html/test_node_encoding.rb
test/namespaces/test_additional_namespaces_in_builder_doc.rb
test/namespaces/test_namespaces_aliased_default.rb
test/namespaces/test_namespaces_in_builder_doc.rb
test/namespaces/test_namespaces_in_cloned_doc.rb
test/namespaces/test_namespaces_in_created_doc.rb
test/namespaces/test_namespaces_in_parsed_doc.rb
test/namespaces/test_namespaces_preservation.rb
test/test_convert_xpath.rb
test/test_css_cache.rb
test/test_encoding_handler.rb
test/test_memory_leak.rb
test/test_nokogiri.rb
test/test_soap4r_sax.rb
test/test_xslt_transforms.rb
test/xml/node/test_save_options.rb
test/xml/node/test_subclass.rb
test/xml/sax/test_parser.rb
test/xml/sax/test_parser_context.rb
test/xml/sax/test_parser_text.rb
test/xml/sax/test_push_parser.rb
test/xml/test_attr.rb
test/xml/test_attribute_decl.rb
test/xml/test_builder.rb
test/xml/test_c14n.rb
test/xml/test_cdata.rb
test/xml/test_comment.rb
test/xml/test_document.rb
test/xml/test_document_encoding.rb
test/xml/test_document_fragment.rb
test/xml/test_dtd.rb
test/xml/test_dtd_encoding.rb
test/xml/test_element_content.rb
test/xml/test_element_decl.rb
test/xml/test_entity_decl.rb
test/xml/test_entity_reference.rb
test/xml/test_namespace.rb
test/xml/test_node.rb
test/xml/test_node_attributes.rb
test/xml/test_node_encoding.rb
test/xml/test_node_inheritance.rb
test/xml/test_node_reparenting.rb
test/xml/test_node_set.rb
test/xml/test_parse_options.rb
test/xml/test_processing_instruction.rb
test/xml/test_reader.rb
test/xml/test_reader_encoding.rb
test/xml/test_relax_ng.rb
test/xml/test_schema.rb
test/xml/test_syntax_error.rb
test/xml/test_text.rb
test/xml/test_unparented_node.rb
test/xml/test_xinclude.rb
test/xml/test_xpath.rb
test/xslt/test_custom_functions.rb
test/xslt/test_exception_handling.rb
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ HOE = Hoe.spec 'nokogiri' do
self.readme_file = "README.md"
self.history_file = "CHANGELOG.md"

self.extra_rdoc_files = FileList['*.rdoc','ext/nokogiri/*.c']

self.extra_rdoc_files = FileList['ext/nokogiri/*.c']

self.clean_globs += [
'nokogiri.gemspec',
Expand Down