read_time.gemspec in read_time-1.0.5 vs read_time.gemspec in read_time-1.0.6

- old
+ new

@@ -1,27 +1,28 @@ # coding: utf-8 -lib = File.expand_path('../lib', __FILE__) + +lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'read_time/version' +require "read_time/version" Gem::Specification.new do |spec| spec.name = "read_time" spec.version = ReadTime::VERSION spec.authors = ["Kaan Kölköy"] spec.email = ["kaanklky@gmail.com"] - spec.summary = %q{Find out read time of your content in hh:mm:ss format.} + spec.summary = "Find out read time of your content in hh:mm:ss format." spec.homepage = "https://github.com/kaanklky/read_time" spec.license = "MIT" if spec.respond_to?(:metadata) - spec.metadata['allowed_push_host'] = "https://rubygems.org/" + spec.metadata["allowed_push_host"] = "https://rubygems.org/" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end - spec.files = `git ls-files -z`.split("\x0").reject do |f| + spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"]