From 1605d57b354a32b3681f986ecde0f767b44a86ef Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Sat, 27 Jan 2018 16:25:29 +0100 Subject: [PATCH] Rubocop --- minima.gemspec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/minima.gemspec b/minima.gemspec index e63e8e37de..6f1bfcb394 100644 --- a/minima.gemspec +++ b/minima.gemspec @@ -1,4 +1,4 @@ -# coding: utf-8 +# frozen_string_literal: true Gem::Specification.new do |spec| spec.name = "minima" @@ -6,17 +6,17 @@ Gem::Specification.new do |spec| spec.authors = ["Joel Glovier"] spec.email = ["jglovier@github.com"] - spec.summary = %q{A beautiful, minimal theme for Jekyll.} + spec.summary = "A beautiful, minimal theme for Jekyll." spec.homepage = "https://github.com/jekyll/minima" spec.license = "MIT" spec.metadata["plugin_type"] = "theme" - spec.files = `git ls-files -z`.split("\x0").select do |f| - f.match(%r{^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i) + spec.files = `git ls-files -z`.split("\x0").select do |f| + f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i) end spec.add_runtime_dependency "jekyll", "~> 3.5" spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1" - spec.add_development_dependency "bundler", "~> 1.12" + spec.add_development_dependency "bundler", "~> 1.15" end