fix rubocop Style/FileName cop
This commit is contained in:
parent
68b5fcfc5f
commit
068a3e748a
|
@ -129,11 +129,6 @@ Style/EmptyLinesAroundAccessModifier:
|
||||||
Style/EmptyLinesAroundMethodBody:
|
Style/EmptyLinesAroundMethodBody:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 1
|
|
||||||
# Configuration parameters: Exclude.
|
|
||||||
Style/FileName:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
# Offense count: 1
|
# Offense count: 1
|
||||||
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||||
Style/FormatString:
|
Style/FormatString:
|
||||||
|
|
|
@ -199,7 +199,7 @@ Zip::ZipFind.find traverses into zip archives too.
|
||||||
======
|
======
|
||||||
Source reorganized. Added ziprequire, which can be used to load ruby
|
Source reorganized. Added ziprequire, which can be used to load ruby
|
||||||
modules from a zip file, in a fashion similar to jar files in
|
modules from a zip file, in a fashion similar to jar files in
|
||||||
Java. Added gtkRubyzip, another sample application. Implemented
|
Java. Added gtk_ruby_zip, another sample application. Implemented
|
||||||
ZipInputStream.lineno and ZipInputStream.rewind
|
ZipInputStream.lineno and ZipInputStream.rewind
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
$: << '../lib'
|
$: << '../lib'
|
||||||
system('zip example.zip example.rb gtkRubyzip.rb')
|
system('zip example.zip example.rb gtk_ruby_zip.rb')
|
||||||
|
|
||||||
require 'zip'
|
require 'zip'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue