-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis_web_manager.gemspec
33 lines (28 loc) · 1.07 KB
/
redis_web_manager.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
# frozen_string_literal: true
require_relative 'lib/redis_web_manager/version'
Gem::Specification.new do |s|
s.name = 'redis_web_manager'
s.version = RedisWebManager::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.authors = ['Boris BRESCIANI', 'Benjamin DARCET', 'Olivier DUMAS']
s.homepage = 'https://github.com/OpenGems/redis_web_manager'
s.summary = 'Manage your Redis instance (See keys, memory used, connected client, etc...)'
s.description = 'Manage your Redis instance (See keys, memory used, connected client, configuration, information)'
s.license = 'MIT'
s.required_ruby_version = '>= 3.1.0'
s.files = Dir[
'README.md',
'LICENSE',
'lib/**/*.rb',
'config/**/*.rb',
'app/**/*.rb',
'app/**/*.erb',
'app/**/*.js',
'app/**/*.css'
]
s.add_dependency 'pagy', '>= 5.0'
s.add_dependency 'rails', '>= 7.0'
s.add_dependency 'redis', '>= 4.1.0'
s.add_dependency 'sprockets-rails', '>= 3.4.0'
end