File: dalli.gemspec

package info (click to toggle)
ruby-dalli 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 992 kB
  • sloc: ruby: 9,447; sh: 19; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 888 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
25
26
27
28
29
30
31
# frozen_string_literal: true

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'dalli/version'

Gem::Specification.new do |s|
  s.name = 'dalli'
  s.version = Dalli::VERSION
  s.license = 'MIT'

  s.authors = ['Peter M. Goldstein', 'Mike Perham']
  s.description = s.summary = 'High performance memcached client for Ruby'
  s.email = ['peter.m.goldstein@gmail.com', 'mperham@gmail.com']
  s.files = Dir.glob('lib/**/*') + [
    'LICENSE',
    'README.md',
    'CHANGELOG.md',
    'Gemfile'
  ]
  s.homepage = 'https://github.com/petergoldstein/dalli'
  s.required_ruby_version = '>= 3.3'

  s.metadata = {
    'bug_tracker_uri' => 'https://github.com/petergoldstein/dalli/issues',
    'changelog_uri' => 'https://github.com/petergoldstein/dalli/blob/main/CHANGELOG.md',
    'rubygems_mfa_required' => 'true'
  }

  s.add_dependency 'logger'
end