forked from redis-store/redis-actionpack
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis-actionpack.gemspec
27 lines (24 loc) · 1004 Bytes
/
redis-actionpack.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'redis/actionpack/version'
Gem::Specification.new do |s|
s.name = 'redis-actionpack'
s.version = Redis::ActionPack::VERSION
s.authors = ['Luca Guidi']
s.email = ['[email protected]']
s.homepage = 'https://redis-store.org/redis-actionpack/'
s.summary = %q{Redis session store for ActionPack}
s.description = "#{s.summary}. Used for storing the Rails session in Redis."
s.license = 'MIT'
s.metadata = {
"source_code_uri" => "https://github.com/redis-store/redis-actionpack"
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = []
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.3.0'
s.add_runtime_dependency 'redis-store', '>= 1.1.0', '< 2'
s.add_runtime_dependency 'redis-rack', '>= 2.1.0', '< 4'
s.add_runtime_dependency 'actionpack', '>= 5', '< 8'
end