-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcapistrano-env_config.gemspec
31 lines (24 loc) · 1.14 KB
/
capistrano-env_config.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
29
30
31
# encoding: utf-8
require_relative 'lib/capistrano/env_config/version'
Gem::Specification.new do |spec|
spec.name = 'capistrano-env_config'
spec.version = Capistrano::EnvConfig::VERSION
spec.authors = [ 'Itay Grudev' ]
spec.email = [ 'itay+capistrano-env_config+github.com[]grudev.com' ]
spec.homepage = 'https://github.com/itay-grudev/capistrano-env_config'
spec.license = 'MIT'
spec.summary = 'A tool for managing your environment variables across your cluster.'
spec.description = <<-EOF.gsub(/^\s+/, '')
EnvConfig is a tool for setting and syncing environment variables across
your the servers in your cluster with a few simple Capistrano tasks. The
library manipulates the system-wide environment variables by modifying the
`/etc/environment` file.
EOF
spec.rubyforge_project = 'capistrano-env_config'
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = [ 'lib' ]
spec.required_ruby_version = '>= 1.9.3'
spec.add_dependency 'capistrano', '~> 3.7'
spec.add_development_dependency 'rspec', '~> 3.6'
spec.add_development_dependency 'simplecov', '~> 0.14'
end