aboutsummaryrefslogtreecommitdiffstats
path: root/ext/strscan
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 07:14:21 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 07:14:21 +0000
commite0bf66c575abe647d514461924e04b5c776a5235 (patch)
tree9f0948f10c00149b470e59953218eee8797e8df7 /ext/strscan
parent5edbec17ec9f2dfb292ad81ee02fd20100e57c6b (diff)
downloadruby-e0bf66c575abe647d514461924e04b5c776a5235.tar.gz
Added initial gemspec for StringScanner class.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/strscan')
-rw-r--r--ext/strscan/strscan.gemspec17
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/strscan/strscan.gemspec b/ext/strscan/strscan.gemspec
new file mode 100644
index 0000000000..268550f46a
--- /dev/null
+++ b/ext/strscan/strscan.gemspec
@@ -0,0 +1,17 @@
+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