Sha256: 8a0b0696146829cd5443172972619ff5acce24b02ff5db0f40412c28a25828f7
Contents?: true
Size: 1.77 KB
Versions: 6
Compression:
Stored size: 1.77 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "csd" gemspec.summary = "Installation and compilation handler for software used in CSD projects." gemspec.description = "CSD stands for Communication Systems Design and is a project of the Telecommunication Systems Laboratory (TSLab) of the Royal Institute of Technology in Stockholm, Sweden. Within CSD many software tools are used to build up various networks and services. This gem is supposed to automate processes to handle the compilation and installation of these software tools. Technology Transfer Alliance (TTA) is the project team, which maintains this code." gemspec.email = "mtoday11@gmail.com" gemspec.homepage = "http://github.com/csd/csd" gemspec.authors = ["Technology Transfer Alliance Team"] gemspec.add_dependency "term-ansicolor", ">= 0" gemspec.executables = ["csd"] end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end begin require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end rescue LoadError task :rcov do abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov" end end task :test => :check_dependencies task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "csd #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
csd-0.0.7 | Rakefile |
csd-0.0.6 | Rakefile |
csd-0.0.5 | Rakefile |
csd-0.0.4 | Rakefile |
csd-0.0.3 | Rakefile |
csd-0.0.2 | Rakefile |