Sha256: e4c413bce1e47b87d38a4fdf3b1658b0f4151617ad4f7d4215183c63e804bb82

Contents?: true

Size: 994 Bytes

Versions: 1

Compression:

Stored size: 994 Bytes

Contents

# 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     = ["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.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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
anyway_config-1.0.0 anyway_config.gemspec