From add3608e7201b5945c649692233ab7a12365b550 Mon Sep 17 00:00:00 2001 From: tricksterguy Date: Sun, 5 Dec 2010 21:20:55 +0000 Subject: [PATCH] Added Rakefile gem description and homepage git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1750 4e206d99-4929-0410-ac5d-dfc041789085 --- bindings/ruby/Rakefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bindings/ruby/Rakefile b/bindings/ruby/Rakefile index d8e0d95a..30185777 100644 --- a/bindings/ruby/Rakefile +++ b/bindings/ruby/Rakefile @@ -22,7 +22,8 @@ spec = Gem::Specification.new do |s| s.platform = Gem::Platform::CURRENT s.name = "rbSFML" s.version = RUBYSFML_VERSION - s.author = "Henrik Valter Vogelius Hansson" + s.authors = ["Henrik Valter Vogelius Hansson", 'Brandon Whitehead'] + s.email = "groogy@groogy.se" s.summary = "Ruby bindings for SFML 2.0" s.has_rdoc = true @@ -36,6 +37,17 @@ spec = Gem::Specification.new do |s| fl.include("sfml-all/all/*.cpp", "sfml-all/all/*.hpp") end s.extensions = ["Rakefile"] + + s.description = <<-EOF + rbSFML are bindings for the SFML library version 2.0 for Ruby. + SFML or Simple Fast Multimedia library is is a free multimedia C++ API + that provides you low and high level access to graphics, input, audio, etc. + EOF + + s.homepage = 'http://sfml-dev.org' + + + s.extra_rdoc_files = FileList.new do |fl| fl.include "doc/*.rdoc"