mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7a0f0e258b
* ext/ripper/depend (ripper.E): add missing $(INCFLAGS). * ext/ripper/tools/strip.rb: insert an empty line for blank or line directive lines. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
12 lines
219 B
Ruby
Executable file
12 lines
219 B
Ruby
Executable file
# frozen_string_literal: false
|
|
last_is_void = false
|
|
ARGF.each do |line|
|
|
case line
|
|
when /\A\s*\z/, /\A\#/
|
|
puts unless last_is_void
|
|
last_is_void = true
|
|
else
|
|
print line
|
|
last_is_void = false
|
|
end
|
|
end
|