Sha256: 78a48629997a0f8c82c3e8a86279d9f95cb8edc1edecaeae63b7cd86b2012d6c

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

require 'rubygems'
require 'rake'
require "rake/clean"
require "rake/gempackagetask"

spec = Gem::Specification.new do |s| 
  s.name = "UG_RRobots"
  s.version = "2.0"
  s.author = "Simon Kröger, Romain GEORGES"
  s.email = "dev@ultragreen.net"
  s.homepage = "http://www.ultragreen.net/projects/rrobots"
  s.platform = Gem::Platform::RUBY
  s.summary = "Ultragreen RRobots Fork with new features like toolboxes, config file, gemified"
  s.files = FileList["{bin,lib,images,config,doc,contribs,robots}/**/*"].to_a.concat(['COPYRIGHT.txt','Rakefile'])
  s.require_path = "lib"
  #  s.autorequire = "name"
  #  s.test_files = FileList["{test}/**/*test.rb"].to_a
  s.has_rdoc = true
  s.extra_rdoc_files = FileList["doc/*"].to_a.concat(FileList["bin/*"].to_a)
  s.add_dependency("i18n", ">= 0.2.1")
  s.bindir = 'bin'
  s.executables = ['rrobots','tournament']
  s.description = "Ultragreen RRobots Fork"
  s.rdoc_options << '--title' << 'UG RRobots a RRobots project Fork ' << '--main' << 'doc/manual.rdoc' << '--line-numbers' << '--exclude' << 'robots images' << '--diagram' 
end
 
Rake::GemPackageTask.new(spec) do |pkg| 
  pkg.need_tar = true 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
UG_RRobots-2.0 Rakefile