mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
I noticed that some files in rubygems were executable, and I could think
of no reason why they should be.
In general, I think ruby files should never have the executable bit set
unless they include a shebang, so I run the following command over the
whole repo:
```bash
find . -name '*.rb' -type f -executable -exec bash -c 'grep -L "^#!" $1 || chmod -x $1' _ {} \;
```
15 lines
337 B
Ruby
15 lines
337 B
Ruby
# frozen_string_literal: true
|
|
off = true
|
|
ARGF.each do |line|
|
|
case line
|
|
when /RIPPER_PARAMS_DECL_BEGIN/
|
|
off = false
|
|
when /RIPPER_PARAMS_DECL_END/
|
|
exit
|
|
when /ripper/
|
|
next if off
|
|
var = line.scan(/\w+/).last or next
|
|
base = var.sub(/ripper_/, '')
|
|
puts %"\#define #{base}\t\t(parser->ripper_#{base})"
|
|
end
|
|
end
|