public
Fork of apache/buildr
Description: Buildr forks and knives
Homepage: http://buildr.apache.org
Clone URL: git://github.com/djspiewak/buildr.git
djspiewak (author)
Fri Feb 27 13:34:44 -0800 2009
djspiewak (committer)
Wed May 20 14:59:40 -0700 2009
buildr /
name age message
file .gitignore Fri Feb 13 01:15:17 -0800 2009 Separated _site (directory) and site (whole enc... [assaf]
file CHANGELOG Mon Mar 02 12:12:00 -0800 2009 BUILDR-222 Support Git as a version control sys... [Alex Boisvert]
file LICENSE Tue Nov 13 15:44:11 -0800 2007 Initial checkin git-svn-id: https://svn.apache... [assaf]
file NOTICE Thu Feb 12 13:57:17 -0800 2009 Copyright notice now spans into 2009. git-svn-... [assaf]
file README.rdoc Thu Jan 29 13:36:25 -0800 2009 Updated SVN URL git-svn-id: https://svn.apache... [assaf]
file Rakefile Fri Feb 27 14:24:50 -0800 2009 Fixed RDoc 2.3/2.4 conflict on rake setup. git... [assaf]
file _buildr Fri Feb 27 00:55:14 -0800 2009 Fix for _buildr and _jbuildr preventing them fr... [assaf]
file _jbuildr Fri Feb 27 00:55:14 -0800 2009 Fix for _buildr and _jbuildr preventing them fr... [assaf]
directory addon/ Loading commit data...
directory bin/ Thu Oct 16 18:02:09 -0700 2008 Bringing Buildr::Application to better extend R... [assaf]
file buildr.buildfile Thu Jan 29 13:36:25 -0800 2009 Updated SVN URL git-svn-id: https://svn.apache... [assaf]
file buildr.gemspec Fri Feb 27 14:24:50 -0800 2009 Fixed RDoc 2.3/2.4 conflict on rake setup. git... [assaf]
directory doc/ Mon Mar 02 15:50:05 -0800 2009 Made clear in buildr-git notice that the github... [vic]
directory etc/ Mon Mar 02 21:13:30 -0800 2009 Removing git-svn-authors, build-git.rb download... [vic]
directory lib/
directory rakelib/ Fri Feb 27 14:24:50 -0800 2009 Fixed RDoc 2.3/2.4 conflict on rake setup. git... [assaf]
directory spec/ Mon Mar 02 12:12:00 -0800 2009 BUILDR-222 Support Git as a version control sys... [Alex Boisvert]
README.rdoc

Buildr

This is Buildr, the build system that doesn’t suck.

buildr.apache.org/

Get Started

Install Buildr

Buildr needs Ruby 1.8 or later and RubyGems 0.9 or later.

Windows users can get the one-click Ruby installer, which includes the latest version of Ruby and RubyGems:

rubyinstaller.rubyforge.org

Make sure to set JAVA_HOME environment variable first, then:

  gem install buildr

(Use sudo for Linux and OS X)

More installation and setup instructions available online buildr.apache.org/

RTFM

Mailing list

Users: mail-archives.apache.org/mod_mbox/buildr-users/

Developers: mail-archives.apache.org/mod_mbox/buildr-dev/

Create your own Buildfile and start living the life!

Where’s My Ruby?

Buildr needs Ruby 1.8 or later and RubyGems 0.9 or later. All other dependencies are installed when you run:

  gem install buildr

Windows

Windows users can get the one-click Ruby installer, which includes the latest version of Ruby and RubyGems:

rubyinstaller.rubyforge.org

Before installing Buildr, please set the JAVA_HOME environment variable to point to your JDK distribution. Next, use Ruby Gem to install Buildr:

  > gem install buildr

When prompted for a platform, select mswin32.

Linux, BSD, Cygwin

On Linux/BSD/Cygwin, use your default package manager, for example, for Ubuntu:

$ sudo apt-get install ruby $ sudo apt-get install ruby1.8-dev $ sudo apt-get install build-essential $ sudo apt-get install libopenssl-ruby

Before installing Buildr, please set the JAVA_HOME environment variable to point to your JDK distribution. Next, use Ruby Gem to install Buildr:

  $ sudo env JAVA_HOME=$JAVA_HOME gem install buildr

When prompted for a platform, select ruby.

OS X

Leopard includes the latest version of Ruby, if you are using Tiger or an older release, we recommend re-installing the latest:

hivelogic.com/narrative/articles/ruby-rails-mongrel-mysql-osx

To install Buildr:

  $ sudo gem install buildr

When prompted for a platform, select ruby.

Living On the Edge

You can check the latest sources from SVN:

  svn co http://svn.apache.org/repos/asf/buildr/trunk

Or browse the SVN repository online: svn.apache.org/repos/asf/buildr

If you prefer Git, a Git fork is available from github.com/vic/buildr/tree/master:

  git clone git://github.com/vic/buildr.git

To install Buildr locally from source:

  cd buildr
  rake install

If the cutting edge doesn’t work, make sure to check the CHANGELOG, to see which changes might have broken your build. To run all the test cases:

  rake spec

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.