parent
17bd584319
commit
bb42e6251e
|
@ -152,5 +152,3 @@ Style/SymbolArray:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
Style/TrailingCommaInLiteral:
|
Style/TrailingCommaInLiteral:
|
||||||
EnforcedStyleForMultiline: consistent_comma
|
EnforcedStyleForMultiline: consistent_comma
|
||||||
Style/UnneededCapitalW:
|
|
||||||
Enabled: false
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ module Jekyll
|
||||||
:StartCallback => start_callback(opts["detach"]),
|
:StartCallback => start_callback(opts["detach"]),
|
||||||
:BindAddress => opts["host"],
|
:BindAddress => opts["host"],
|
||||||
:Port => opts["port"],
|
:Port => opts["port"],
|
||||||
:DirectoryIndex => %W(
|
:DirectoryIndex => %w(
|
||||||
index.htm
|
index.htm
|
||||||
index.html
|
index.html
|
||||||
index.rhtml
|
index.rhtml
|
||||||
|
|
|
@ -44,7 +44,7 @@ module Jekyll
|
||||||
# are not in safe mode.)
|
# are not in safe mode.)
|
||||||
|
|
||||||
def valid_processors
|
def valid_processors
|
||||||
%W(rdiscount kramdown redcarpet) + third_party_processors
|
%w(rdiscount kramdown redcarpet) + third_party_processors
|
||||||
end
|
end
|
||||||
|
|
||||||
# Public: A list of processors that you provide via plugins.
|
# Public: A list of processors that you provide via plugins.
|
||||||
|
|
Loading…
Reference in New Issue