-
Notifications
You must be signed in to change notification settings - Fork 5
/
persey.gemspec
28 lines (24 loc) · 1.11 KB
/
persey.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 'persey/version'
Gem::Specification.new do |spec|
spec.name = "persey"
spec.version = Persey::VERSION
spec.authors = ["Andrey Kumanyaev"]
spec.email = ["[email protected]"]
spec.summary = %q{Helps you easily manage environment specific settings}
spec.description = %q{Persey helps you easily load configs from different files and use them from one variable. Based on Configus.}
spec.homepage = "https://github.com/zzet/persey"
spec.license = "MIT"
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|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'configus', '>= 0.0.5'
spec.add_runtime_dependency 'json-stream'
spec.add_runtime_dependency 'toml', '~> 0.1.0'
spec.add_runtime_dependency 'inifile'
spec.add_development_dependency 'simplecov'
end