Rubocop: Style/Proc
- Use proc instead of Proc.new ...and use lambda instead of proc
This commit is contained in:
parent
af5d51289f
commit
7ca4f7cd62
|
@ -127,7 +127,7 @@ module Jekyll
|
||||||
# Get configuration from <source>/_config.yml or <source>/<config_file>
|
# Get configuration from <source>/_config.yml or <source>/<config_file>
|
||||||
config_files = override.delete('config')
|
config_files = override.delete('config')
|
||||||
if config_files.to_s.empty?
|
if config_files.to_s.empty?
|
||||||
default = %w(yml yaml).find(Proc.new { 'yml' }) do |ext|
|
default = %w(yml yaml).find(-> { 'yml' }) do |ext|
|
||||||
File.exist?(Jekyll.sanitized_path(source(override), "_config.#{ext}"))
|
File.exist?(Jekyll.sanitized_path(source(override), "_config.#{ext}"))
|
||||||
end
|
end
|
||||||
config_files = Jekyll.sanitized_path(source(override), "_config.#{default}")
|
config_files = Jekyll.sanitized_path(source(override), "_config.#{default}")
|
||||||
|
|
Loading…
Reference in New Issue