-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbib-vagrant.gemspec
31 lines (26 loc) · 1.22 KB
/
bib-vagrant.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bib/version'
Gem::Specification.new do |spec|
spec.name = 'bib-vagrant'
spec.version = Bib::Vagrant::VERSION
spec.authors = %w(tillk fh gilleyj seppsepp baccenfutter)
spec.email = ['[email protected]']
spec.description = "A rubygem to centralize configuration and setup in every project's Vagrantfile"
spec.summary = 'Centralize configuration and setup'
spec.homepage = 'https://github.com/easybiblabs/bib-vagrant'
spec.license = 'Apache-2.0'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
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_dependency 'thor', '>= 0.19.4'
spec.add_dependency 'colored', '>= 1.2'
spec.add_dependency 'rest-client', '>= 1.6.0', '< 3.0'
spec.add_dependency 'json'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest', '~> 5.0.8'
spec.add_development_dependency 'coveralls'
end