mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f48655d04d
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' _ {} \; ```
18 lines
452 B
Ruby
18 lines
452 B
Ruby
# How to use this file:
|
|
# 1. write a `$(srcdir)/test.rb` like:
|
|
=begin
|
|
require_relative 'benchmark/lib/load'
|
|
|
|
Benchmark.driver(repeat_count: 5){|x|
|
|
x.executable name: 'clean-miniruby', command: %w'../clean-trunk/miniruby'
|
|
x.executable name: 'modif-miniruby', command: %w'./miniruby'
|
|
|
|
x.report %q{
|
|
h = {a: 1, b: 2, c: 3, d: 4}
|
|
}
|
|
}
|
|
=end
|
|
#
|
|
# 2. `make run`
|
|
$:.unshift(File.join(__dir__, '../benchmark-driver/lib'))
|
|
require 'benchmark_driver'
|