forked from rackspace-cookbooks/chef-sugar-rackspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchef-sugar-rackspace.gemspec
32 lines (27 loc) · 1.33 KB
/
chef-sugar-rackspace.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef/sugar/rackspace/version'
Gem::Specification.new do |spec|
spec.name = 'chef-sugar-rackspace'
spec.version = Chef::Sugar::Rackspace::VERSION
spec.authors = ['Jim Rosser']
spec.email = ['[email protected]']
spec.description = 'An extension to the "chef-sugar" gem with rackspace' \
' specific helpers.'
spec.summary = 'A collection of helper methods and modules, extending' \
' the helper methods available in the "chef-sugar" gem' \
' for Rackspace.'
spec.homepage = 'https://github.com/jarosser06/chef-sugar-rackspace'
spec.license = 'MIT'
spec.required_ruby_version = '>= 1.9'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w(lib)
spec.add_runtime_dependency 'chef-sugar', '~> 2.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'chefspec', '~> 4.2'
spec.add_development_dependency 'test-kitchen', '~> 1.3'
spec.add_development_dependency 'kitchen-vagrant', '~> 0.15'
end