-
Notifications
You must be signed in to change notification settings - Fork 6
/
clouds.gemspec
35 lines (33 loc) · 1.26 KB
/
clouds.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
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','clouds','version.rb'])
Gem::Specification.new do |s|
s.name = 'clouds'
s.version = Clouds::VERSION
s.author = 'Cristian Magherusan-Stanciu'
s.email = 'cristian.magherusan-stanciu@here.com'
s.homepage = 'https://github.com/cristim/clouds'
s.platform = Gem::Platform::RUBY
s.summary = 'AWS Cloudformation API'
s.description = 'A layer of syntax sugar around the AWS Cloudformation API that allows you to handle Cloudformation-defined infrastructure as code with a simple tool'
# Add your other files here if you make them
s.files = %w(
bin/clouds
lib/clouds/version.rb
lib/clouds.rb
)
s.require_paths << 'lib'
s.has_rdoc = true
s.extra_rdoc_files = %w(README.md clouds.rdoc)
s.rdoc_options << '--title' << 'clouds' << '--main' << 'README.md' << '-ri'
s.bindir = 'bin'
s.executables << 'clouds'
s.license = 'GPL-2'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'aruba'
s.add_development_dependency 'nokogiri'
s.add_runtime_dependency 'gli'
s.add_runtime_dependency 'aws-sdk-v1'
s.add_runtime_dependency 'inifile'
end