Sha256: e5bb6ec7d25ee2b86c6945fda2ac2783ff01d01044c3763148dd9eae6f5f5853

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

# 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         = ["noah_gibbs@yahoo.com"]
  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.3'
  spec.add_runtime_dependency 'chef', '12.0.3'
  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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
madscience-0.0.20 madscience.gemspec
madscience-0.0.19 madscience.gemspec
madscience-0.0.17 madscience.gemspec
madscience-0.0.16 madscience.gemspec
madscience-0.0.15 madscience.gemspec