[前][次][番号順一覧][スレッド一覧]

ruby-changes:45628

From: hsbt <ko1@a...>
Date: Fri, 24 Feb 2017 15:49:04 +0900 (JST)
Subject: [ruby-changes:45628] hsbt:r57701 (trunk): Added initial gemspec for GDBM module.

hsbt	2017-02-24 15:48:55 +0900 (Fri, 24 Feb 2017)

  New Revision: 57701

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57701

  Log:
    Added initial gemspec for GDBM module.

  Added files:
    trunk/ext/gdbm/gdbm.gemspec
Index: ext/gdbm/gdbm.gemspec
===================================================================
--- ext/gdbm/gdbm.gemspec	(revision 0)
+++ ext/gdbm/gdbm.gemspec	(revision 57701)
@@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/gdbm/gdbm.gemspec#L1
+Gem::Specification.new do |s|
+  s.name = "gdbm"
+  s.version = '0.0.1'
+  s.date = '2017-02-24'
+  s.summary = "Ruby extension for GNU dbm."
+  s.description = "Ruby extension for GNU dbm."
+
+  s.require_path = %w{lib}
+  s.files = %w{depend extconf.rb gdbm.c}
+  s.extensions = %w{extconf.rb}
+  s.required_ruby_version = ">= 2.5.0dev"
+
+  s.authors = ["Yukihiro Matsumoto"]
+  s.email = ["matz@r..."]
+  s.homepage = "https://www.ruby-lang.org"
+  s.license = "BSD-2-Clause"
+end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]