forked from stackmate/stackmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackmate.gemspec
More file actions
30 lines (27 loc) · 1019 Bytes
/
stackmate.gemspec
File metadata and controls
30 lines (27 loc) · 1019 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stackmate/version'
Gem::Specification.new do |s|
s.name = 'stackmate'
s.version = StackMate::VERSION
s.summary = "Execute CloudFormation templates on CloudStack"
s.description = "Parse and execute CloudFormation templates on CloudStack and other clouds"
s.authors = ["Chiradeep Vittal"]
s.email = 'chiradeepv@gmail.com'
s.files = Dir[
'lib/**/*.rb', 'test/**/*.rb', 'bin/**',
'*.gemspec', '*.txt', '*.rdoc', '*.md'
]
s.executables << 'stackmate'
s.homepage =
'https://github.com/chiradeep/stackmate'
s.platform = Gem::Platform::RUBY
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'ruote', '>= 2.3.0'
s.add_runtime_dependency 'sinatra', '~> 1.3.6'
s.add_runtime_dependency 'yajl-ruby', '= 1.1.0'
s.add_runtime_dependency 'netaddr'
s.add_development_dependency 'rspec'
s.require_path = 'lib'
end