forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-sdk-core.gemspec
28 lines (21 loc) · 934 Bytes
/
aws-sdk-core.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
version = File.read(File.expand_path('../../VERSION', __FILE__)).strip
Gem::Specification.new do |spec|
spec.name = 'aws-sdk-core'
spec.version = version
spec.summary = 'AWS SDK for Ruby - Core'
spec.description = 'Provides API clients for AWS. This gem is part of the official AWS SDK for Ruby.'
spec.author = 'Amazon Web Services'
spec.homepage = 'http://github.com/aws/aws-sdk-ruby'
spec.license = 'Apache 2.0'
spec.email = ['trevrowe@amazon.com']
spec.require_paths = ['lib']
spec.files = ['endpoints.json']
spec.files += Dir['lib/**/*.rb']
spec.files += Dir['apis/*.json'].select { |p| !p.match(/\.docs\.json$/) }
spec.bindir = 'bin'
spec.executables << 'aws.rb'
spec.add_dependency('multi_json', '~> 1.0')
spec.add_dependency('multi_xml', '~> 0.5')
spec.add_dependency('builder', '~> 3.0')
spec.add_dependency('jmespath', '~> 1.0')
end