Skip to content

Commit

Permalink
Fix uninitialized warning
Browse files Browse the repository at this point in the history
```
/Users/rschneeman/Documents/projects/puma_worker_killer/puma_worker_killer.gemspec:17: warning: global variable `$INPUT_RECORD_SEPARATOR' not initialized
```
  • Loading branch information
schneems committed Jul 22, 2024
1 parent df449aa commit d7bb88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion puma_worker_killer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.homepage = "https://github.com/schneems/puma_worker_killer"
gem.license = "MIT"

gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ["lib"]

Expand Down

0 comments on commit d7bb88d

Please sign in to comment.