AntBuilder 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -1,5 +1,4 @@
1
- Copyright (c) 2006 Nick Sieger <nick@nicksieger.com>
2
- Copyright (c) 2006 Ola Bini <ola@ologix.com>
1
+ Copyright (c) 2006 Tim Azzopardi <tim@tigerfive.com>
3
2
 
4
3
  Permission is hereby granted, free of charge, to any person obtaining
5
4
  a copy of this software and associated documentation files (the
data/README CHANGED
@@ -11,12 +11,14 @@ AntBuilder is a sub project of jruby-extras at RubyForge.
11
11
  == Using AntBuilder
12
12
 
13
13
  See index.html in the docs directory.
14
+ See examples/basic/check_install.rb
15
+ See examples/jruby/build.rb
14
16
 
15
17
  == Contact
16
18
 
17
19
  Author:: Tim Azzopardi
18
20
  Email:: tim@tigerfive.com
19
- Home Page:: http://onestepback.org
21
+ Home Page:: http://rubyforge.org/projects/jruby-extras/
20
22
  License:: MIT Licence (http://www.opensource.org/licenses/mit-license.html)
21
23
 
22
24
  The Leafcutter jar and source jar is included in this gem.
@@ -1,16 +1,11 @@
1
1
  Modify your CLASSPATH to include leafcutter.jar.
2
- Modify your CLASSPATH to include log4j.jar
2
+ Modify your CLASSPATH to include log4j.properties
3
+ Modify your CLASSPATH to include tools.jar from your java JDK, if you want to use the 'javac' ant task
4
+ Modify your CLASSPATH to include junit.jar from your java JDK, if you want to use the 'junit' ant task
3
5
 
4
6
  For convenience, AntBuilder includes leafcutter.jar. (https://leafcutter.dev.java.net/)
5
7
 
6
- Note that leafcutter.jar includes all the ant 1.6.5 jars except xercesImpl.jar
7
- and xml-apis.jar.
8
+ Note that leafcutter.jar includes all the ant 1.6.5 jars except xercesImpl.jar and xml-apis.jar.
8
9
 
9
- (If you want to use the 'javac' ant task to compile java code, then a java runtime
10
- is not enough. You will also need to modify your CLASSPATH environment variable to
11
- include a tools.jar from your java JDK.)
12
-
13
- (If you want to use the 'junit' ant task to run junit tests, then you will also need
14
- to modify your CLASSPATH environment variable to include a junit.jar.)
15
10
 
16
11
 
@@ -1,13 +1,15 @@
1
- build.rb is can be used to build JRuby using JRuby
1
+ build.rb can be used to build JRuby using JRuby
2
2
  steps.
3
- - check out the CVS HEAD of JRuby
4
- - copy the AntBuilder 'builder' directory to the lib/ruby/site_ruby directory of the JRuby project
5
- - copy the AntBuilder 'build.rb' file to the root of the JRuby project
3
+ - install jruby source from either the subversion repository (http://svn.codehaus.org/jruby/trunk/jruby)
4
+ or from the source tar file at http://dist.codehaus.org/jruby/
5
+ - gem install AntBuilder
6
+ - copy the AntBuilder examples/jruby/build.rb file to the root of the JRuby project (where the jruby build.xml lives)
6
7
  - Open a command prompt in the root of the Jruby project and make sure you can run "jruby --version" (e.g. add jruby/bin to your path)
7
- - put leafcutter.jar (from the AntBuilder project) on the classpath
8
+ - put gems/AntBuilder/classpath/leafcutter.jar
8
9
  - put tools.jar from your jdk on the classpath (required for the javac ant task)
9
- - put the JRuby jruby\build\classes\jruby directory on the classpath (required by the JRubySerialize task)
10
- - Open a command prompt in the root of the Jruby project and run: 'jruby build.rb clean serialize create_jar_standalone'
10
+ - put junit.jar on the classpath (required for the junit ant task)
11
+ - put the JRuby jruby\build\classes\jruby directory on the classpath
12
+ - Open a command prompt in the root of the Jruby project and run: 'jruby build.rb clean jar'
11
13
 
12
14
 
13
15
 
metadata CHANGED
@@ -1,42 +1,25 @@
1
1
  --- !ruby/object:Gem::Specification
2
- has_rdoc: true
3
- requirements:
4
- - To use the 'javac' ant task, add your java jdk tools.jar to your CLASSPATH
5
- - To use the 'junit' ant task, add junit.jar to your CLASSPATH
6
- extensions: []
7
- authors:
8
- - JRuby-extras
9
- default_executable:
10
- extra_rdoc_files: []
11
- name: AntBuilder
12
- summary: 'AntBuilder: Use ant from JRuby. Only usable within JRuby'
13
- bindir: bin
14
2
  autorequire: antbuilder
15
- require_paths:
16
- - lib
17
- email: tim@tigerfive.com
18
- rubygems_version: 0.9.0
19
- rubyforge_project:
20
- rdoc_options: []
21
- version: !ruby/object:Gem::Version
22
- version: 0.4.1
23
- description:
24
3
  required_ruby_version: !ruby/object:Gem::Version::Requirement
25
4
  requirements:
26
5
  - - '>'
27
6
  - !ruby/object:Gem::Version
28
7
  version: 0.0.0
29
8
  version:
30
- signing_key:
31
- cert_chain:
32
- specification_version: 1
33
- homepage: http://jruby-extras.rubyforge.org/
34
- date: 2006-09-11 00:00:00 +00:00
9
+ rubygems_version: 0.9.0
35
10
  post_install_message:
11
+ homepage: http://jruby-extras.rubyforge.org/
36
12
  executables: []
37
- platform: ruby
38
- test_files: []
39
- dependencies: []
13
+ bindir: bin
14
+ name: AntBuilder
15
+ specification_version: 1
16
+ extra_rdoc_files: []
17
+ extensions: []
18
+ signing_key:
19
+ require_paths:
20
+ - lib
21
+ email: tim@tigerfive.com
22
+ description:
40
23
  files:
41
24
  - classpath/README
42
25
  - classpath/leafcutter-src.jar
@@ -68,3 +51,20 @@ files:
68
51
  - lib/builder/xmlbase.rb
69
52
  - LICENSE
70
53
  - README
54
+ version: !ruby/object:Gem::Version
55
+ version: 0.4.2
56
+ authors:
57
+ - JRuby-extras
58
+ rubyforge_project:
59
+ platform: ruby
60
+ summary: 'AntBuilder: Use ant from JRuby. Only usable within JRuby'
61
+ requirements:
62
+ - To use the 'javac' ant task, add your java jdk tools.jar to your CLASSPATH
63
+ - To use the 'junit' ant task, add junit.jar to your CLASSPATH
64
+ date: 2007-03-07 00:00:00 +00:00
65
+ cert_chain:
66
+ rdoc_options: []
67
+ dependencies: []
68
+ default_executable:
69
+ test_files: []
70
+ has_rdoc: true