2014-12-30 17:20:57 -05:00
|
|
|
# coding: utf-8
|
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'fog/aws/version'
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "fog-aws"
|
2014-12-30 17:25:09 -05:00
|
|
|
spec.version = Fog::AWS::VERSION
|
2015-01-02 13:44:42 -05:00
|
|
|
spec.authors = ["Josh Lane", "Wesley Beary"]
|
|
|
|
spec.email = ["me@joshualane.com", "geemus@gmail.com"]
|
2014-12-30 17:20:57 -05:00
|
|
|
spec.summary = %q{Module for the 'fog' gem to support Amazon Web Services.}
|
|
|
|
spec.description = %q{This library can be used as a module for `fog` or as standalone provider
|
|
|
|
to use the Amazon Web Services in applications..}
|
2016-08-01 15:34:17 -04:00
|
|
|
spec.homepage = "https://github.com/fog/fog-aws"
|
2014-12-30 17:20:57 -05:00
|
|
|
spec.license = "MIT"
|
|
|
|
|
|
|
|
spec.files = `git ls-files -z`.split("\x0")
|
|
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
|
2015-01-02 12:49:51 -05:00
|
|
|
spec.add_development_dependency 'bundler', '~> 1.6'
|
|
|
|
spec.add_development_dependency 'rake', '~> 10.0'
|
|
|
|
spec.add_development_dependency 'shindo', '~> 0.3'
|
2015-06-22 20:05:47 -04:00
|
|
|
spec.add_development_dependency 'rubyzip', '~> 0.9.9'
|
2014-12-30 17:20:57 -05:00
|
|
|
|
2016-04-22 11:12:17 -04:00
|
|
|
spec.add_dependency 'fog-core', '~> 1.38'
|
2015-01-02 12:49:51 -05:00
|
|
|
spec.add_dependency 'fog-json', '~> 1.0'
|
|
|
|
spec.add_dependency 'fog-xml', '~> 0.1'
|
|
|
|
spec.add_dependency 'ipaddress', '~> 0.8'
|
2014-12-30 17:20:57 -05:00
|
|
|
end
|