forked from aws/aws-sdk-rails
-
Notifications
You must be signed in to change notification settings - Fork 2
/
aws-sdk-rails.gemspec
34 lines (26 loc) · 1.33 KB
/
aws-sdk-rails.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
33
34
# frozen_string_literal: true
version = File.read(File.expand_path('VERSION', __dir__)).strip
Gem::Specification.new do |spec|
spec.name = 'aws-sdk-rails'
spec.version = version
spec.authors = ['Amazon Web Services']
spec.email = ['aws-dr-rubygems@amazon.com']
spec.summary = 'AWS SDK for Ruby on Rails Plugin'
spec.description = 'Integrates the AWS Ruby SDK with Ruby on Rails'
spec.homepage = 'https://github.com/aws/aws-sdk-rails'
spec.license = 'Apache-2.0'
spec.require_paths = ['lib']
spec.files += Dir['lib/**/*', 'bin/*']
spec.files << 'VERSION'
spec.executables = ['aws_sqs_active_job']
spec.add_dependency('aws-record', '~> 2') # for Aws::Record integration
# Require these versions for user_agent_framework configs
spec.add_dependency('aws-sdk-ses', '~> 1', '>= 1.50.0') # for ActionMailer
spec.add_dependency('aws-sdk-sesv2', '~> 1', '>= 1.34.0') # for ActionMailer
spec.add_dependency('aws-sdk-sqs', '~> 1', '>= 1.56.0') # for ActiveJob
spec.add_dependency('aws-sessionstore-dynamodb', '~> 2') # includes DynamoDB
spec.add_dependency('concurrent-ruby', '~> 1') # Utilities for concurrent processing
spec.add_dependency('railties', '>= 5.2.0') # encrypted credentials
spec.add_development_dependency('rails')
spec.required_ruby_version = '>= 2.3'
end