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

plugin-generator: update gemspec to remove unnecessary files #4535

Merged

Commits on Jun 20, 2024

  1. plugin-generator: update gemspec to remove unnecessary files

    We should reflect recent gemspec moves.
    
    `test_files` is not documented anymore:
    
    * https://guides.rubygems.org/specification-reference
    
    The template of Bundler 2.4.13 is as follows:
    
        spec.files = Dir.chdir(__dir__) do
          `git ls-files -z`.split("\x0").reject do |f|
            (File.expand_path(f) == __FILE__) ||
              f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
          end
        end
    
    Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
    daipom committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    23a50a0 View commit details
    Browse the repository at this point in the history