This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit c63071788c04663bc00d3bc2a1f5b08fa52ddd52
tree a9dd72bc7c3641f2219602aa2a7f4dc4c126b407
parent 283957a715fbc60700703ee7b29b8d64fefca6c9 parent da32467579a19062c1a6132380a002c91c14a0d5
tree a9dd72bc7c3641f2219602aa2a7f4dc4c126b407
parent 283957a715fbc60700703ee7b29b8d64fefca6c9 parent da32467579a19062c1a6132380a002c91c14a0d5
cruisecontrolrb / Rakefile
| c9b77ca3 » | alexeyv | 2007-01-25 | 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, | |
| 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||||
| 3 | |||||
| 4 | require(File.join(File.dirname(__FILE__), 'config', 'boot')) | ||||
| 5 | |||||
| 6 | require 'rubygems' | ||||
| 7 | require 'rake' | ||||
| 8 | require 'rake/testtask' | ||||
| 9 | require 'rake/rdoctask' | ||||
| 10 | |||||
| 11 | require 'rake/packagetask' | ||||
| 12 | require 'rake/gempackagetask' | ||||
| 13 | require 'rake/contrib/rubyforgepublisher' | ||||
| 14 | |||||
| e8563d24 » | alexeyv | 2007-02-06 | 15 | require File.dirname(__FILE__) + '/lib/cruise_control/version' | |
| c9b77ca3 » | alexeyv | 2007-01-25 | 16 | ||
| 17 | PKG_NAME = 'cruisecontrol' | ||||
| 18 | PKG_VERSION = CruiseControl::VERSION::STRING | ||||
| 19 | PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" | ||||
| 20 | |||||
| 21 | RELEASE_NAME = "REL #{PKG_VERSION}" | ||||
| 22 | |||||
| 23 | RUBY_FORGE_PROJECT = "cruisecontrolrb" | ||||
| 24 | RUBY_FORGE_USER = "stellsmi" | ||||
| 25 | |||||
| 26 | |||||
| 27 | require 'tasks/rails' | ||||
| 0c69143b » | stellsmi | 2007-02-09 | 28 | ||







