forked from chef/knife-ec2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knife-ec2.gemspec
24 lines (21 loc) · 948 Bytes
/
knife-ec2.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "knife-ec2/version"
Gem::Specification.new do |s|
s.name = "knife-ec2"
s.version = Knife::Ec2::VERSION
s.has_rdoc = true
s.authors = ["Adam Jacob","Seth Chisamore"]
s.email = ["adam@opscode.com","schisamo@opscode.com"]
s.homepage = "http://wiki.opscode.com/display/chef"
s.summary = "EC2 Support for Chef's Knife Command"
s.description = s.summary
s.extra_rdoc_files = ["README.rdoc", "LICENSE" ]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_dependency "fog", "~> 1.3"
s.add_dependency "chef", ">= 0.10.10"
%w(rspec-core rspec-expectations rspec-mocks rspec_junit_formatter).each { |gem| s.add_development_dependency gem }
s.require_paths = ["lib"]
end