Rubocop: Style/LineEndConcatenation

- Use \ instead of + or << to concatenate those strings
This commit is contained in:
Pat Hawks
2016-01-03 14:41:49 -08:00
parent 44d2995277
commit 0eae36aec2
8 changed files with 36 additions and 36 deletions

View File

@@ -86,8 +86,8 @@ module Jekyll
def deprecation_checks
pagination_included = (site.config['gems'] || []).include?('jekyll-paginate') || defined?(Jekyll::Paginate)
if site.config['paginate'] && !pagination_included
Jekyll::Deprecator.deprecation_message "You appear to have pagination " +
"turned on, but you haven't included the `jekyll-paginate` gem. " +
Jekyll::Deprecator.deprecation_message "You appear to have pagination " \
"turned on, but you haven't included the `jekyll-paginate` gem. " \
"Ensure you have `gems: [jekyll-paginate]` in your configuration file."
end
end