ruby-changes:45487
From: hsbt <ko1@a...>
Date: Tue, 7 Feb 2017 16:14:25 +0900 (JST)
Subject: [ruby-changes:45487] hsbt:r57560 (trunk): Added initial gemspec for StringScanner class.
hsbt 2017-02-07 16:14:21 +0900 (Tue, 07 Feb 2017) New Revision: 57560 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57560 Log: Added initial gemspec for StringScanner class. Added files: trunk/ext/strscan/strscan.gemspec Index: ext/strscan/strscan.gemspec =================================================================== --- ext/strscan/strscan.gemspec (revision 0) +++ ext/strscan/strscan.gemspec (revision 57560) @@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/strscan/strscan.gemspec#L1 +Gem::Specification.new do |s| + s.name = "strscan" + s.version = '0.0.1' + s.date = '2017-02-07' + s.summary = "Provides lexical scanning operations on a String." + s.description = "Provides lexical scanning operations on a String." + + s.require_path = %w{lib} + s.files = %w{depend extconf.rb strscan.c} + s.extensions = %w{extconf.rb} + s.required_ruby_version = ">= 2.5.0dev" + + s.authors = ["Minero Aoki"] + s.email = [nil] + s.homepage = "https://www.ruby-lang.org" + s.license = "BSD-2-Clause" +end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/