-
Notifications
You must be signed in to change notification settings - Fork 5
/
fast_cache.gemspec
29 lines (26 loc) · 1.3 KB
/
fast_cache.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fast_cache/version'
Gem::Specification.new do |spec|
spec.name = "fast_cache"
spec.version = FastCache::VERSION
spec.authors = ["Simeon Simeonov"]
spec.email = ["sim@swoop.com"]
spec.description = %q{Very fast LRU + TTL cache}
spec.summary = %q{FastCache is an in-process cache with both least-recently used (LRU) and time to live (TTL) expiration semantics. It is typically 5-100x faster than ActiveSupport::Cache::MemoryStore, depending on the cached data.}
spec.homepage = "https://github.com/swoop-inc/fast_cache"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 2.0"
spec.add_development_dependency "rspec-its"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "awesome_print"
spec.add_development_dependency "timecop"
spec.add_development_dependency "yard"
end