Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop packaging test files with the gem
It reduces the size of the gem by half, from 645K to 294K. The default for new gems (created by bundler) is not to include test files. See rubygems/bundler#3207
- Loading branch information
8501553
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dimko this causes problem with tests using:
NewRelic::Agent.require_test_helper
method. As the file required by this method is no longer accessible in gem installed on the machine.NewRelic::Agent.require_test_helper
is public so should be updated first