fuel-library/deployment/mcollective/astute/astute.gemspec
2013-03-11 15:06:52 +04:00

22 lines
691 B
Ruby
Executable File

$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'astute/version'
Gem::Specification.new do |s|
s.name = 'astute'
s.version = Astute::VERSION
s.summary = 'Orchestrator for OpenStack deployment'
s.description = 'Deployment Orchestrator of Puppet via MCollective. Works as a library or from CLI.'
s.authors = ['Mike Scherbakov']
s.email = ['mscherbakov@mirantis.com']
s.add_dependency 'mcollective-client', '> 2.0.0'
s.add_dependency 'symboltable', '>= 1.0.2'
s.files = Dir.glob("{bin,lib,spec,samples,templates}/**/*")
s.executables = ['astute', 'astute_run', 'openstack_system']
s.extra_rdoc_files = %w< README >
s.require_path = 'lib'
end