-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathdalli-elasticache.gemspec
30 lines (23 loc) · 1.04 KB
/
dalli-elasticache.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
# frozen_string_literal: true
require_relative 'lib/dalli/elasticache/version'
Gem::Specification.new do |s|
s.name = 'dalli-elasticache'
s.version = Dalli::ElastiCache::VERSION
s.licenses = ['MIT']
s.summary = "Configure Dalli clients with ElastiCache's AutoDiscovery"
s.description = <<-DESC
This gem provides an interface for fetching cluster information from an AWS
ElastiCache AutoDiscovery server and configuring a Dalli client to connect
to all nodes in the cache cluster.
DESC
s.authors = ['Aaron Suggs', 'Zach Millman', 'Peter M. Goldstein']
s.email = ['aaron@ktheory.com', 'zach@magoosh.com', 'peter.m.goldstein@gmail.com']
s.homepage = 'http://github.com/ktheory/dalli-elasticache'
s.files = Dir.glob('{bin,lib}/**/*') + %w[README.md Rakefile]
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.6.0'
s.required_rubygems_version = '>= 1.3.5'
s.add_dependency 'dalli', '>= 2.0.0'
s.metadata['rubygems_mfa_required'] = 'true'
end