-
Notifications
You must be signed in to change notification settings - Fork 3
/
capistrano-figaro.gemspec
30 lines (24 loc) · 1.09 KB
/
capistrano-figaro.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
require 'English'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'capistrano-figaro'
s.version = File.read('VERSION').strip
s.summary = 'Capistrano integration with Figaro'
s.description = 'Capistrano plugin that integrates with Figaro, loading '\
'your configuration for use during deployment.'
s.authors = ['Runar Skaare Tveiten']
s.email = ['[email protected]']
s.homepage = 'https://github.com/runar/capistrano-figaro'
s.license = 'MIT'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.test_files = s.files.grep(/^test/)
s.require_paths = ['lib']
s.add_dependency 'capistrano', '~> 3.1'
s.add_dependency 'figaro', '~> 1.1'
s.add_development_dependency 'bundler', '~> 1.10'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
s.add_development_dependency 'minitest', '~> 5.7'
s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'rubocop', '~> 0.32'
end