forked from Shopify/memcached_store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memcached_store.gemspec
28 lines (22 loc) · 1.07 KB
/
memcached_store.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
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require "memcached_store/version"
Gem::Specification.new do |spec|
spec.name = "memcached_store"
spec.authors = ["Camilo Lopez", "Tom Burns", "Arthur Neves", "Francis Bogsanyi"]
spec.summary = spec.description = 'Plugin-able Memcached adapters to add features (compression, safety)'
spec.homepage = "https://github.com/Shopify/memcached_store/"
spec.license = "MIT"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.version = MemcachedStore::VERSION
spec.files = Dir["lib/**/*.rb", "README.md", "LICENSE"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6.0"
spec.add_runtime_dependency "activesupport", ">= 6"
spec.add_runtime_dependency "memcached", "~> 1.8"
spec.add_development_dependency "rake"
spec.add_development_dependency "mocha"
spec.add_development_dependency "timecop"
end