forked from aws/aws-record-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws-record.gemspec
More file actions
20 lines (16 loc) · 795 Bytes
/
aws-record.gemspec
File metadata and controls
20 lines (16 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'aws-record'
spec.version = File.read(File.expand_path('VERSION', __dir__)).strip
spec.authors = ['Amazon Web Services']
spec.email = ['aws-dr-rubygems@amazon.com']
spec.summary = 'AWS Record library for Amazon DynamoDB'
spec.description = 'Provides an object mapping abstraction for Amazon DynamoDB.'
spec.homepage = 'https://github.com/aws/aws-sdk-ruby-record'
spec.license = 'Apache 2.0'
spec.require_paths = ['lib']
spec.files = Dir['lib/**/*.rb', 'LICENSE', 'CHANGELOG.md', 'VERSION']
# Require 1.85.0 for user_agent_frameworks config
spec.add_dependency 'aws-sdk-dynamodb', '~> 1', '>= 1.85.0'
spec.required_ruby_version = '>= 2.3'
end