forked from jcamenisch/ENV_BANG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env_setting.gemspec
28 lines (24 loc) · 1.12 KB
/
env_setting.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'env_setting/version'
Gem::Specification.new do |spec|
spec.name = "env_setting"
spec.version = EnvSetting::VERSION
spec.authors = ["Will Spurgin"]
spec.email = ["will.spurgin@orm-tech.com"]
spec.summary = %q{Mange your environment variables in OOP style}
spec.description = %q{Allows OOP access to ENV variables by a slight re-write of the env_bang gem.}
spec.homepage = "https://github.com/ormtech/env_setting"
spec.license = "MIT"
spec.cert_chain = ['certs/wspurgin.pem']
spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "coveralls"
end