forked from nickcharlton/boxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboxes.gemspec
38 lines (32 loc) · 1.35 KB
/
boxes.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
32
33
34
35
36
37
38
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'boxes/version'
Gem::Specification.new do |spec|
spec.name = 'boxes'
spec.version = Boxes::VERSION
spec.authors = ['Nick Charlton']
spec.email = ['[email protected]']
spec.summary = 'A command line tool to take the complexity out of '\
'building Vagrant boxes.'
spec.description = <<-EOF
boxes takes the complexity out of building custom Vagrant boxes.
It's a command line tool which provides a set of templates and scripts to
combine as you need. There are also a set of pre-build boxes which are
regenerated regularly.'
EOF
spec.homepage = 'https://github.com/nickcharlton/boxes'
spec.license = 'MIT'
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)/)
spec.require_paths = ['lib']
spec.add_dependency "claide"
spec.add_dependency "colored"
spec.add_development_dependency "bundler"
spec.add_development_dependency "climate_control"
spec.add_development_dependency "fakefs"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end