Sha256: d8f65de807cb8ddf6a89b7852fc0f88ba97bbd6ae3363bf3073130a1ea0cc375
Contents?: true
Size: 977 Bytes
Versions: 1
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.59.0" s.add_development_dependency "simplecov", ">= 0.3.8" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
anyway_config-1.3.1 | anyway_config.gemspec |