-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRakefile
More file actions
50 lines (45 loc) · 1.73 KB
/
Rakefile
File metadata and controls
50 lines (45 loc) · 1.73 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
# Copyright 2008 Caleb Powell
# Licensed 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.
$LOAD_PATH.push(FileUtils::pwd + '/lib')
require 'rubygems'
require 'hoe'
require './lib/antwrap.rb'
require 'rake/testtask'
def apply_default_hoe_properties(hoe)
hoe.remote_rdoc_dir = ''
hoe.group_name = 'antwrap'
hoe.author = 'Caleb Powell'
hoe.email = 'caleb.powell@gmail.com'
hoe.urls = { 'home' => 'http://rubyforge.org/projects/antwrap/' }
hoe.summary = 'A Ruby module that wraps the Apache Ant build tool. Antwrap can be used to invoke Ant Tasks from a Ruby or a JRuby script.'
hoe.description = hoe.paragraphs_of('README.txt', 2..5).join("\n\n")
hoe.changes = hoe.paragraphs_of('History.txt', 0..1).join("\n\n")
hoe.version = Antwrap::VERSION
puts "Current changes in this release_______________ "
puts "#{hoe.changes}"
puts "----------------------------------------------"
end
#builds the MRI Gem
Hoe.spec('atoulme-Antwrap') do
apply_default_hoe_properties(self)
extra_deps << ["rjb", ">= 1.0.3"]
end
#builds the JRuby Gem
Hoe.spec('atoulme-Antwrap') do
apply_default_hoe_properties(self)
spec_extras[:platform] = 'java'
end
Rake::TestTask.new('test') do |t|
t.ruby_opts = ['-r test/load_devcreek.rb']
t.test_files = ['test/*test.rb']
end