Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove
Gem::Specification#test_files=
to reduce gem package size
`Gem::Specification#test_files=` is no longer recommended. rubygems/guides#90 And it increases gem package size because the option adds test files to the package. So I think we should avoid using `test_files=` option. --- It reduces 4.7MB package size on my local. before ```bash $ du graphiql-rails-1.7.0/ --summarize 6.7M graphiql-rails-1.7.0/ ``` after ```bash $ du graphiql-rails-1.7.0/ --summarize 2.0M graphiql-rails-1.7.0/ ```
- Loading branch information