2014-12-30 14:20:57 -08: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 14:25:09 -08:00
|
|
|
spec.version = Fog::AWS::VERSION
|
2015-01-02 10:44:42 -08:00
|
|
|
spec.authors = ["Josh Lane", "Wesley Beary"]
|
|
|
|
spec.email = ["me@joshualane.com", "geemus@gmail.com"]
|
2014-12-30 14:20:57 -08: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-02 04:34:17 +09:00
|
|
|
spec.homepage = "https://github.com/fog/fog-aws"
|
2014-12-30 14:20:57 -08:00
|
|
|
spec.license = "MIT"
|
|
|
|
|
|
|
|
spec.files = `git ls-files -z`.split("\x0")
|
2020-04-24 10:22:03 -04:00
|
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
2014-12-30 14:20:57 -08:00
|
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
|
2017-10-19 19:04:59 +03:00
|
|
|
spec.required_ruby_version = '>= 2.0.0'
|
|
|
|
|
2019-02-13 09:38:41 -06:00
|
|
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
2019-03-13 11:38:00 -05:00
|
|
|
spec.add_development_dependency 'github_changelog_generator', '~> 1.14'
|
2020-03-06 10:03:08 -06:00
|
|
|
spec.add_development_dependency 'rake', '>= 12.3.3'
|
2019-10-17 09:50:09 -05:00
|
|
|
spec.add_development_dependency 'rubyzip', '~> 1.3.0'
|
2018-02-26 09:58:10 -08:00
|
|
|
spec.add_development_dependency 'shindo', '~> 0.3'
|
2014-12-30 14:20:57 -08:00
|
|
|
|
2018-02-26 09:58:10 -08:00
|
|
|
spec.add_dependency 'fog-core', '~> 2.1'
|
|
|
|
spec.add_dependency 'fog-json', '~> 1.1'
|
2015-01-02 09:49:51 -08:00
|
|
|
spec.add_dependency 'fog-xml', '~> 0.1'
|
|
|
|
spec.add_dependency 'ipaddress', '~> 0.8'
|
2014-12-30 14:20:57 -08:00
|
|
|
end
|