Sha256: abd37a3ad5f428e73683fd1f00ec61c5b8c3a0cd338484689b2d0fb86d295e6c
Contents?: true
Size: 977 Bytes
Versions: 2
Compression:
Stored size: 977 Bytes
Contents
# 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 = ["Vladimir Dementyev"] s.email = ["dementiev.vm@gmail.com"] s.homepage = "http://github.com/palkan/anyway_config" s.summary = "Configuration DSL for Ruby libraries and applications" s.description = %{ Configuration DSL for Ruby libraries and applications. Allows you to easily follow the twelve-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.3' s.add_development_dependency "rspec", "~> 3.5" s.add_development_dependency "rubocop", "~> 0.60.0" s.add_development_dependency "simplecov", ">= 0.3.8" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
anyway_config-1.4.1 | anyway_config.gemspec |
anyway_config-1.4.0 | anyway_config.gemspec |