From 1e3219b5fa871451d78d358a82c04542c161045b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Bo=C3=9Flet?= Date: Wed, 27 Feb 2013 02:05:14 +0100 Subject: [PATCH] Update gemspec --- binyo.gemspec | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/binyo.gemspec b/binyo.gemspec index c5d30a7..6eb0d46 100644 --- a/binyo.gemspec +++ b/binyo.gemspec @@ -1,13 +1,20 @@ Gem::Specification.new do |s| + s.name = 'binyo' s.version = '0.0.1' + s.author = 'Martin Bosslet' s.email = 'Martin.Bosslet@gmail.com' s.homepage = 'https://github.com/krypt/binyo' s.summary = 'Fast binary IO for Ruby' + s.description = 'binyo offers a generic C API for dealing with Ruby IO objects and extension classes that allow to deal effectively with binary data' + + s.required_ruby_version = '>= 1.9.3' + s.extensions << 'ext/binyo/extconf.rb' s.files = %w(LICENSE) + Dir.glob('{bin,ext,lib,spec,test}/**/*') s.test_files = Dir.glob('test/**/test_*.rb') s.require_path = "lib" s.license = 'MIT' + end