File: redis-actionpack.gemspec

package info (click to toggle)
ruby-redis-actionpack 5.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 212 kB
  • sloc: ruby: 394; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 869 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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       = ['me@lucaguidi.com']
  s.homepage    = 'http://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.files         = Dir["lib/**/*"]
  s.test_files    = Dir['{test,spec,features}/*']
  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', '< 3'
  s.add_runtime_dependency 'actionpack',  '>= 5', '< 8'
end