anyway_config.gemspec in anyway_config-0.5.1 vs anyway_config.gemspec in anyway_config-1.0.0.rc1

- old
+ new

@@ -1,22 +1,30 @@ # coding: utf-8 +# frozen_string_literal: true + lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'anyway/version' Gem::Specification.new do |s| s.name = "anyway_config" s.version = Anyway::VERSION - s.authors = ["Vlad Dem"] + s.authors = ["Vladimir Dementyev"] s.email = ["dementiev.vm@gmail.com"] s.homepage = "http://github.com/palkan/anyway_config" - s.summary = "Configuration for Ruby plugins and applications" - s.description = "Configuration for Ruby plugins and applications" - s.license = "MIT" + s.summary = "Configuration DSL for Ruby libraries and applications" + s.description = %{ + Configuration DSL for Ruby libraries and applications. - s.files = `git ls-files`.split($/) + Allows you to easily follow the twevle factor application principles (https://12factor.net/config). + } + + s.license = "MIT" + + s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) s.require_paths = ["lib"] s.required_ruby_version = '>= 2' s.add_development_dependency "simplecov", ">= 0.3.8" s.add_development_dependency "rspec", "~> 3.5.0" + s.add_development_dependency "rubocop", "~> 0.49" end