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

Exclude test files from the gem package #724

Merged
merged 2 commits into from
Apr 2, 2022
Merged
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
18 changes: 3 additions & 15 deletions redcarpet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.9.2'
# = MANIFEST =
s.files = %w[
CHANGELOG.md
CONTRIBUTING.md
COPYING
Gemfile
README.markdown
Expand All @@ -27,6 +29,7 @@ Gem::Specification.new do |s|
ext/redcarpet/houdini_html_e.c
ext/redcarpet/html.c
ext/redcarpet/html.h
ext/redcarpet/html_block_names.txt
ext/redcarpet/html_blocks.h
ext/redcarpet/html_smartypants.c
ext/redcarpet/markdown.c
Expand All @@ -42,21 +45,6 @@ Gem::Specification.new do |s|
lib/redcarpet/render_man.rb
lib/redcarpet/render_strip.rb
redcarpet.gemspec
test/benchmark.rb
test/custom_render_test.rb
test/fixtures/benchmark.md
test/html5_test.rb
test/html_render_test.rb
test/html_toc_render_test.rb
test/markdown_test.rb
test/pathological_inputs_test.rb
test/redcarpet_bin_test.rb
test/redcarpet_compat_test.rb
test/safe_render_test.rb
test/smarty_html_test.rb
test/smarty_pants_test.rb
test/stripdown_render_test.rb
test/test_helper.rb
]
# = MANIFEST =
s.test_files = s.files.grep(%r{^test/})
Expand Down