File: sdbm.gemspec

package info (click to toggle)
ruby-sdbm 1.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 168 kB
  • sloc: ansic: 1,259; ruby: 436; sh: 4; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 745 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
# frozen_string_literal: true

Gem::Specification.new do |s|
  s.name = "sdbm"
  s.version = '1.0.0'
  s.date = '2017-12-11'
  s.summary = "Provides a simple file-based key-value store with String keys and values."
  s.description = "Provides a simple file-based key-value store with String keys and values."

  s.require_path = %w{lib}
  s.files = %w{ext/sdbm/_sdbm.c ext/sdbm/extconf.rb ext/sdbm/init.c ext/sdbm/sdbm.h}
  s.extensions = ["ext/sdbm/extconf.rb"]
  s.required_ruby_version = ">= 2.3.0"

  s.authors = ["Yukihiro Matsumoto"]
  s.email = ["matz@ruby-lang.org"]
  s.homepage = "https://github.com/ruby/sdbm"
  s.license = "BSD-2-Clause"

  s.add_development_dependency "test-unit"
  s.add_development_dependency "rake-compiler"
end