-
Notifications
You must be signed in to change notification settings - Fork 2
/
madscience.gemspec
44 lines (38 loc) · 1.81 KB
/
madscience.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
39
40
41
42
43
44
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'madscience/version'
Gem::Specification.new do |spec|
spec.name = "madscience"
spec.version = MadScience::VERSION
spec.authors = ["Noah Gibbs"]
spec.email = ["[email protected]"]
spec.summary = %q{Install the current versions of the MadScience stack.}
spec.description = <<DESC
Install the current versions of the MadScience stack. This stack includes
Vagrant, Chef and Capistrano - tools to configure a server, simulate it and
install software to it, as well as to allocate staging and production servers.
DESC
spec.homepage = "http://rubymadscience.com"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0") +
Dir.glob("cookbooks/**/*") - ["cookbooks/.keep"]
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"]
# Need Bundler to lock down versions, but MadScience doesn't
# depend on a specific Bundler version.
spec.add_runtime_dependency 'bundler', '~> 1.5'
spec.add_runtime_dependency 'knife-solo', '0.4.2'
spec.add_runtime_dependency 'librarian-chef', '0.0.4'
spec.add_runtime_dependency 'chef', '11.18.6'
spec.add_runtime_dependency 'capistrano', '3.2.1'
spec.add_runtime_dependency 'capistrano-rails', '1.1.1'
spec.add_runtime_dependency 'capistrano-bundler', '1.1.2'
spec.add_runtime_dependency 'capistrano-rvm', '0.1.1'
spec.add_runtime_dependency 'sshkit', '1.5.1'
# Several other components of the stack like Vagrant and Chef
# need to be used but can't be installed via RubyGems.
# That's part of why this gem exists.
spec.add_development_dependency 'rake', '~>10.3'
end