Sha256: 01b8ab5afacc45ef79ce357d1889efbf0762a9fe751354d9a308e62624cf54bd

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "yaml2env/version"

Gem::Specification.new do |s|
  s.name        = "yaml2env"
  s.version     = Yaml2env::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Merchii", "Jonas Grimfelt"]
  s.email       = ["jonas@merchii.com", "grimen@gmail.com"]
  s.homepage    = "http://github.com/merchii/yaml2env"
  s.summary     = %q{YAML => ENV for environment-specific configs}
  s.description = %q{Stash environment-specific configs in YAML-files and load them into ENV according to best-practices pattern - and auto-detects on-initialization if something is missing (skipping the "scratching the head"-part).}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_runtime_dependency 'active_support'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'bundler'
  s.add_development_dependency 'minitest'
  s.add_development_dependency 'guard'
  s.add_development_dependency 'guard-bundler'
  s.add_development_dependency 'guard-minitest'
  s.add_development_dependency 'mocha'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yaml2env-0.2.0 yaml2env.gemspec