[orchestrator] Added gemspec

This commit is contained in:
Mike Scherbakov 2012-10-11 13:08:44 +04:00 committed by default
parent 0ff5425fd3
commit b19797fe00
5 changed files with 26 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,6 +1,8 @@
*.pyc
*.sqlite
*.gem
# vim swap files
.*.swp

2
naily/.gitignore vendored
View File

@ -1,2 +0,0 @@
naily-*.gem

View File

@ -1,5 +1,7 @@
#!/usr/bin/env ruby
$LOAD_PATH << File.join(File.dirname(__FILE__),"..","lib")
$:.unshift File.expand_path('../lib', File.dirname(__FILE__))
require 'rubygems'
require 'orchestrator'
class DumbReporter

View File

@ -1,4 +1,3 @@
require 'rubygems'
require 'json'
require 'logger'
@ -12,4 +11,6 @@ module Orchestrator
def self.logger=(logger)
@logger = logger
end
VERSION = '0.0.1'
end

View File

@ -0,0 +1,19 @@
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'orchestrator'
Gem::Specification.new do |s|
s.name = 'orchestrator'
s.version = Orchestrator::VERSION
s.summary = 'Orchestrator for OpenStack deployment'
s.description = 'Orchestrator of deployment via Puppet & MCollective. Works both with Nailgun and from CLI.'
s.authors = ['Mike Scherbakov']
s.email = ['mscherbakov@mirantis.com']
s.add_dependency 'mcollective-client', '> 2.0.0'
s.files = Dir.glob("{bin,lib,spec}/**/*")
s.executables = ['orchestrator']
s.require_path = 'lib'
end