Sha256: b84cc1b1ec328a0ca32928d9785dc89813646ddcfa075b810616b1760a250b53

Contents?: true

Size: 479 Bytes

Versions: 37

Compression:

Stored size: 479 Bytes

Contents

require 'rake/clean'
require 'rubygems'
require 'rake/gempackagetask'
require 'rake/rdoctask'

Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
  rd.title = 'Your application title'
end

spec = eval(File.read('todo.gemspec'))

Rake::GemPackageTask.new(spec) do |pkg|
end

require 'rake/testtask'
Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/tc_*.rb']
end

task :default => :test

Version data entries

37 entries across 29 versions & 2 rubygems

Version Path
gli_aziz_light-2.8.1 test/apps/todo_legacy/Rakefile
gli_aziz_light-2.8.1 test/apps/todo/Rakefile
gli-2.8.1 test/apps/todo_legacy/Rakefile
gli-2.8.1 test/apps/todo/Rakefile
gli-2.8.0 test/apps/todo_legacy/Rakefile
gli-2.8.0 test/apps/todo/Rakefile
gli-2.7.0 test/apps/todo/Rakefile
gli-2.7.0 test/apps/todo_legacy/Rakefile
gli-2.6.2 test/apps/todo/Rakefile
gli-2.6.2 test/apps/todo_legacy/Rakefile
gli-2.6.1 test/apps/todo/Rakefile
gli-2.6.1 test/apps/todo_legacy/Rakefile
gli-2.6.0 test/apps/todo_legacy/Rakefile
gli-2.6.0 test/apps/todo/Rakefile
gli-2.6.0.rc1 test/apps/todo_legacy/Rakefile
gli-2.6.0.rc1 test/apps/todo/Rakefile
gli-2.5.6 test/apps/todo/Rakefile
gli-2.5.5 test/apps/todo/Rakefile
gli-2.5.4 test/apps/todo/Rakefile
gli-2.5.3 test/apps/todo/Rakefile