Sha256: ef03fc10fd540d08a3811ffc2e480731fb586450785342b3ea2a411fcce1513a

Contents?: true

Size: 415 Bytes

Versions: 10

Compression:

Stored size: 415 Bytes

Contents

$: << File.expand_path(File.dirname(__FILE__))
require 'rubygems'
require 'rubygems/package_task'
require 'yaml'
require 'ruby/lib/version'

task :default => :test

desc "Run unit tests"
task :test do
  cd "test" do
    ruby "test_rice.rb"
  end
end

desc "Build the documentation"
task :doc do
  sh "make doc"
end

# Gemspec kept externally
eval(File.read("rice.gemspec"))
Gem::PackageTask.new($spec) do |pkg|
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
rice-3.0.0 Rakefile
rice2-2.2.1 Rakefile
rice2-2.2.0 Rakefile
rice-2.2.0 Rakefile
rice-2.1.3 Rakefile
rice-2.1.2 Rakefile
rice-2.1.1 Rakefile
rice-2.1.0 Rakefile
rice-2.0.0 Rakefile
rice-1.7.0 Rakefile