mixed_gauge.gemspec in mixed_gauge-1.2.0.beta2 vs mixed_gauge.gemspec in mixed_gauge-1.2.0
- old
+ new
@@ -1,18 +1,19 @@
-# coding: utf-8
+# rubocop:disable Metrics/LineLength
+
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mixed_gauge/version'
Gem::Specification.new do |spec|
spec.name = 'mixed_gauge'
spec.version = MixedGauge::VERSION
spec.authors = ['Taiki Ono']
spec.email = ['taiks.4559@gmail.com']
- spec.summary = %{A simple and robust ActiveRecord extension for database sharding.}
- spec.description = %{#{spec.summary} Supports shards management with hash slots, re-sharding support, efficient KVS queries, limited RDB queries.}
+ spec.summary = %(A simple and robust ActiveRecord extension for database sharding.)
+ spec.description = %(#{spec.summary} Supports shards management with hash slots, re-sharding support, efficient KVS queries, limited RDB queries.)
spec.homepage = 'https://github.com/taiki45/mixed_gauge'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
@@ -26,8 +27,11 @@
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-doc'
spec.add_development_dependency 'pry-stack_explorer'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3'
+ spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'sqlite3'
end
+
+# rubocop:enable Metrics/LineLength