public
Description: A high level time library, dealing with date, time, durations, intervals and more
Homepage:
Clone URL: git://github.com/apeiros/chronos.git
chronos / Rakefile
100644 35 lines (24 sloc) 1.114 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#--
# Copyright 2007-2008 by Stefan Rusterholz.
# All rights reserved.
# See LICENSE.txt for permissions.
#++
 
 
 
# Look in the rake/initialize.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the rake/tasks directory
# are where the options are used.
require 'rake/initialize'
 
# The default task
task :default => 'spec:run'
 
 
 
# Project details (defaults are in rake/initialize, some cleanup is done per section in the
# prerequisite task in each .task file, some other cleanup is done in post_load.rake)
Project.meta.name = 'chronos'
Project.meta.version = version_proc("Chronos::VERSION")
Project.meta.website = 'http://chronos.rubyforge.org/'
Project.meta.bugtracker = 'http://'
Project.meta.feature_requests = 'http://'
Project.meta.use_git = true
 
# TODO: remove chronos_core from this list later
Project.manifest.exclude += %w[ext/cchronos/**/* ext/chronos_core/**/*]
 
Project.rdoc.exclude += %w[lib/**/*.yaml ext/**/*]
 
Project.rubyforge.project = 'chronos'
Project.rubyforge.path = 'chronos'