public
Rubygem
Description: Apache Buildr
Homepage: http://incubator.apache.org/buildr
Clone URL: git://github.com/vic/buildr.git
assaf (author)
Sat May 17 00:36:42 -0700 2008
commit  c6215b7a3c89539c8899cc2db14f4b7b96ecd7fa
tree    b1f4b38a7348cea34459c2d0276517247d066ad1
parent  50ba8ee8892141846943929e57ad1f4024a0e348
buildr / README
100644 133 lines (72 sloc) 3.009 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
= Buildr
 
This is Buildr, the build system that doesn't suck.
 
http://incubator.apache.org/buildr/
 
 
== 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:
 
http://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
http://incubator.apache.org/buildr/
 
 
=== RTFM
 
* Buildr documentation: http://incubator.apache.org/buildr/
* More about Rake: http://docs.rubyrake.org
* Antwrap documentation: http://antwrap.rubyforge.org
 
 
=== Mailing list
 
* Users: buildr-user@incubator.apache.org (subscribe:
buildr-user-subscribe@incubator.apache.org, archive:
http://mail-archives.apache.org/mod_mbox/incubator-buildr-user/
 
* Developers: buildr-dev@incubator.apache.org (subscribe:
buildr-dev-subscribe@incubator.apache.org, archive:
http://mail-archives.apache.org/mod_mbox/incubator-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:
 
http://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:
 
http://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/incubator/buildr/trunk
 
Or browse the SVN repository online:
http://svn.apache.org/repos/asf/incubator/buildr
 
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
 
 
== Disclaimer
 
:include:DISCLAIMER
 
 
== License
 
:include:LICENSE
 
 
== Notice
 
:include:NOTICE