Skip to content

Commit

Permalink
Fix configuration none? test
Browse files Browse the repository at this point in the history
  • Loading branch information
ixti committed Oct 11, 2013
1 parent 3571eca commit b1843a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/assets_plugin/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def method_missing name, *args, &block


def none? val
val.nil? || val.empty? || "none" == val.to_s.downcase
val.to_s.empty? || "none" == val.to_s.downcase
end


Expand Down

0 comments on commit b1843a9

Please sign in to comment.