Sha256: 735ec2003097e78ad7d4930a11b7150d7c6faae66b964c4990d2739de3db57d9

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

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 "bundler", ">= 1.15"
  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.4 anyway_config.gemspec
anyway_config-1.4.3 anyway_config.gemspec