From 1f0dec2a1be842d5d7772fbb647c0633c771b351 Mon Sep 17 00:00:00 2001 From: hsbt Date: Tue, 14 Feb 2017 11:12:52 +0000 Subject: Added initial gemspec for Scanf module. [Feature #13213] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/scanf.gemspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/scanf.gemspec (limited to 'lib/scanf.gemspec') diff --git a/lib/scanf.gemspec b/lib/scanf.gemspec new file mode 100644 index 0000000000..7a9c064664 --- /dev/null +++ b/lib/scanf.gemspec @@ -0,0 +1,16 @@ +Gem::Specification.new do |s| + s.name = "scanf" + s.version = '0.0.1' + s.date = '2017-02-14' + s.summary = "scanf is an implementation of the C function scanf(3)." + s.description = "scanf is an implementation of the C function scanf(3)." + + s.require_path = %w{lib} + s.files = %w{scanf.rb} + s.required_ruby_version = ">= 2.5.0dev" + + s.authors = ["David Alan Black"] + s.email = ['dblack@superlink.net'] + s.homepage = "https://www.ruby-lang.org" + s.license = "BSD-2-Clause" +end -- cgit v1.2.3