Sha256: 6a09461915e2a073e1c1c8f3dad6be6e4af5ef0da081efd65a03ed53064a4260

Contents?: true

Size: 1.96 KB

Versions: 146

Compression:

Stored size: 1.96 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "coderunner"
  gem.homepage = "http://coderunner.sourceforge.net"
  gem.license = "GPLv3"
	gem.rubyforge_project = gem.name
  gem.summary = %Q{A framework for the automated running and analysis of simulations.}
  gem.description = %Q{CodeRunner is a framework for the automated running and analysis of simulations. It automatically generates any necessary input files, organises the output data and analyses it. Because it is a modular system, it can easily be customised to work with any system and any simulation code. One of its greatest strengths is that it is independent of any one simulation code; thus it can easily plot and compare the data from different codes.}
  gem.email = "edmundhighcock@sourceforge.net"
  gem.authors = ["Edmund Highcock"]
	gem.extensions = "ext/extconf.rb"
	gem.files.include('ext/*.c', 'include/*.h', 'ext/*.rb')
	gem.required_ruby_version = '>= 1.9.1'
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end


#require 'rcov/rcovtask'
#Rcov::RcovTask.new do |test|
  #test.libs << 'test'
  #test.pattern = 'test/**/test_*.rb'
  #test.verbose = true
  #test.rcov_opts << '--exclude "gems/*"'
#end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "coderunner #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

146 entries across 146 versions & 1 rubygems

Version Path
coderunner-0.18.4 Rakefile
coderunner-0.18.3 Rakefile
coderunner-0.18.2 Rakefile
coderunner-0.18.1 Rakefile
coderunner-0.18.0 Rakefile
coderunner-0.17.11 Rakefile
coderunner-0.17.10 Rakefile
coderunner-0.17.9 Rakefile
coderunner-0.17.8 Rakefile
coderunner-0.17.7 Rakefile
coderunner-0.17.6 Rakefile
coderunner-0.17.5 Rakefile
coderunner-0.17.4 Rakefile
coderunner-0.17.3 Rakefile
coderunner-0.17.2 Rakefile
coderunner-0.17.1 Rakefile
coderunner-0.17.0 Rakefile
coderunner-0.16.20 Rakefile
coderunner-0.16.19 Rakefile
coderunner-0.16.18 Rakefile