-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredis-activesupport-with-cas.gemspec
35 lines (29 loc) · 1.43 KB
/
redis-activesupport-with-cas.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
35
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'redis-activesupport-with-cas'
s.version = '0.0.2'
s.authors = ['Rajko Albrecht']
s.email = ['[email protected]']
s.homepage = 'https://git.alwin-it.de/alwin/redis-activesupport-with-cas'
s.summary = %q{Extend redis activesupport for Ruby frameworks with cas}
s.description = %q{Extend the redis activesupport with CAS (compare-and-swap) functionality for better cache integrity support}
s.rubyforge_project = 'redis-activesupport-with-cas'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.license = 'MIT'
s.add_dependency 'redis', '>= 2.2', '< 4'
s.add_dependency 'redis-store', '>= 1.1.0', '< 2'
s.add_dependency 'redis-activesupport'
s.add_dependency 'redis-store-with-cas'
s.add_development_dependency 'rake', '~> 10'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'mocha', '~> 0.14.0'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'git', '~> 1.2'
s.add_development_dependency 'pry-nav', '~> 0.2.4'
s.add_development_dependency 'pry', '~> 0.10.4'
s.add_development_dependency 'redis-store-testing'
end