forked from isaiah/jubilee
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
114 lines (96 loc) · 3.16 KB
/
Rakefile
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
# encoding: utf-8
$:.unshift("./lib")
require 'rubygems'
require 'bundler'
require 'jubilee/version'
include\
begin
RbConfig
rescue NameError
Config
end
begin
Bundler.setup(:default, :development, :test)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "jubilee"
gem.homepage = "http://isaiah.github.io/jubilee"
gem.license = "MIT"
gem.summary = %Q{More than a server for rack applications.}
gem.description = %Q{Jubilee is a rack server for JRuby built upon the high performance Vertx platform. It provides the best features of Vertx such as EventBus, SharedData, and clustering.}
gem.email = "[email protected]"
gem.authors = ["Isaiah Peng"]
gem.version = Jubilee::Version::STRING
gem.platform = "java"
gem.files.include "lib/jubilee/jubilee.jar"
gem.files.include "jars/*.jar"
gem.files.include "lib/**/*.rb"
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test' << 'spec'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
task :test => :jar
#require 'rcov/rcovtask'
#Rcov::RcovTask.new do |test|
# test.libs << 'test'
# test.pattern = 'test/**/test_*.rb'
# test.verbose = true
# test.rcov_opts << '--exclude "gems/*"'
#end
task :default => :test
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = Jubilee::Version::STRING
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "jubilee #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
# require 'ant'
desc "Clean up build artifacts"
task :clean do
sh "mvn clean"
#rm_rf "jars"
rm_rf "lib/jubilee/*.jar"
rm_rf "lib/core"
rm_rf "lib/vertx.rb"
rm_rf "lib/vertx_tests.rb"
rm_rf "lib/container.rb"
rm_rf "lib/test_utils.rb"
end
#desc "Compile the extension, need jdk7 because vertx relies on it"
#task :compile => [DEST_PATH, "#{DEST_PATH}/META-INF"] do |t|
# #ant.javac :srcdir => "java", :destdir => t.prerequisites.first,
# # :source => "1.7", :target => "1.7", :debug => true, :includeantruntime => false,
# # :classpath => "${java.class.path}:${sun.boot.class.path}:jars/vertx-core-2.1.2.jar:jars/netty-all-4.0.20.Final.jar:jars/jackson-core-2.2.2.jar:jars/jackson-databind-2.2.2.jar:jars/jackson-annotations-2.2.2.jar:jars/hazelcast-3.2.3.jar:jars/vertx-platform-2.1.2.jar:jars/vertx-hazelcast-2.1.2.jar"
#end
#desc "Copy META-INF"
#task "#{DEST_PATH}/META-INF" => ["#{RESOURCE_PATH}/META-INF", "#{RESOURCE_PATH}/default-cluster.xml"] do |t|
# FileUtils.cp_r t.prerequisites.first, t.name, verbose: true
# cp t.prerequisites[1], DEST_PATH, verbose: true
#end
desc "Build the jar"
task :jar => :clean do
sh "mvn package"
#sh "unzip jars/*.zip *.rb -d lib"
end
task :build => :jar
require 'rspec/core/rake_task'
desc "Run integration tests"
RSpec::Core::RakeTask.new do |t|
t.ruby_opts = ['-I"spec:lib"']
t.pattern = 'spec/**/*_spec.rb'
end
task :spec => :jar