Sha256: aba1985c0ce784680c02221fa88fed8a464733d1871c2769862355c7b4d810ed

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 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.required_rubygems_version = '>= 1.3.6'
  s.rubyforge_project         = s.name

  s.add_development_dependency 'rake'
  s.add_development_dependency 'bundler', '~> 1.0.0'
  s.add_development_dependency 'minitest'
  s.add_development_dependency 'guard'
  s.add_development_dependency 'guard-bundler'
  s.add_development_dependency 'guard-minitest'

  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"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yaml2env-0.1.2 yaml2env.gemspec
yaml2env-0.1.1 yaml2env.gemspec