1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/Rakefile

122 lines
3.2 KiB
Text
Raw Normal View History

2012-01-08 12:06:50 -05:00
require "hoe"
require "rake/extensiontask"
require "rake/javaextensiontask"
2012-01-08 12:06:50 -05:00
IS_JRUBY = defined?(RUBY_ENGINE) ? RUBY_ENGINE == "jruby" : false
2012-03-29 18:47:48 -04:00
Hoe.plugin :git
2012-01-08 12:06:50 -05:00
HOE = Hoe.spec "puma" do
self.rubyforge_name = 'puma'
self.readme_file = "README.md"
2012-04-30 13:45:32 -04:00
self.urls = %w!http://puma.io https://github.com/puma/puma!
2012-01-08 12:06:50 -05:00
developer 'Evan Phoenix', 'evan@phx.io'
spec_extras[:extensions] = ["ext/puma_http11/extconf.rb"]
spec_extras[:executables] = ['puma', 'pumactl']
2012-04-30 13:45:32 -04:00
spec_extras[:homepage] = self.urls.first
2012-01-08 12:06:50 -05:00
require_ruby_version ">= 1.8.7"
2013-02-06 01:46:07 -05:00
dependency "rack", [">= 1.1", "< 2.0"]
2012-01-08 12:06:50 -05:00
extra_dev_deps << ["rake-compiler", "~> 0.8.0"]
end
# hoe/test and rake-compiler don't seem to play well together, so disable
# hoe/test's .gemtest touch file thingy for now
HOE.spec.files -= [".gemtest"]
2012-01-08 12:06:50 -05:00
# puma.gemspec
2012-01-08 13:53:28 -05:00
2012-07-19 19:39:46 -04:00
file "#{HOE.spec.name}.gemspec" => ['Rakefile', "lib/puma/const.rb"] do |t|
2012-01-08 12:06:50 -05:00
puts "Generating #{t.name}"
File.open(t.name, 'wb') { |f| f.write HOE.spec.to_ruby }
end
desc "Generate or update the standalone gemspec file for the project"
task :gemspec => ["#{HOE.spec.name}.gemspec"]
2012-01-08 13:53:28 -05:00
# generate extension code using Ragel (C and Java)
desc "Generate extension code (C and Java) using Ragel"
task :ragel
file 'ext/puma_http11/http11_parser.c' => ['ext/puma_http11/http11_parser.rl'] do |t|
begin
sh "ragel #{t.prerequisites.last} -C -G2 -I ext/puma_http11 -o #{t.name}"
rescue
fail "Could not build wrapper using Ragel (it failed or not installed?)"
end
end
task :ragel => ['ext/puma_http11/http11_parser.c']
file 'ext/puma_http11/org/jruby/puma/Http11Parser.java' => ['ext/puma_http11/http11_parser.java.rl'] do |t|
begin
sh "ragel #{t.prerequisites.last} -J -G2 -I ext/puma_http11 -o #{t.name}"
rescue
fail "Could not build wrapper using Ragel (it failed or not installed?)"
end
end
task :ragel => ['ext/puma_http11/org/jruby/puma/Http11Parser.java']
2012-08-23 19:56:37 -04:00
if !IS_JRUBY
# compile extensions using rake-compiler
# C (MRI, Rubinius)
Rake::ExtensionTask.new("puma_http11", HOE.spec) do |ext|
# place extension inside namespace
ext.lib_dir = "lib/puma"
ext.cross_compile = true
ext.cross_platform = ['i386-mswin32-60', 'i386-mingw32']
ext.cross_compiling do |spec|
# add fat-binary stub only when cross compiling
spec.files << "lib/puma/puma_http11.rb"
end
CLEAN.include "lib/puma/{1.8,1.9}"
CLEAN.include "lib/puma/puma_http11.rb"
end
2012-08-23 19:56:37 -04:00
else
# Java (JRuby)
Rake::JavaExtensionTask.new("puma_http11", HOE.spec) do |ext|
ext.lib_dir = "lib/puma"
end
2012-08-23 19:56:37 -04:00
end
# the following is a fat-binary stub that will be used when
# require 'puma/puma_http11' and will use either 1.8 or 1.9 version depending
# on RUBY_VERSION
file "lib/puma/puma_http11.rb" do |t|
File.open(t.name, "w") do |f|
f.puts "RUBY_VERSION =~ /(\d+.\d+)/"
f.puts 'require "puma/#{$1}/puma_http11"'
end
end
# tests require extension be compiled, but depend on the platform
if IS_JRUBY
task :test => [:java]
else
task :test => [:compile]
end
2012-10-13 13:15:59 -04:00
namespace :test do
desc "Run the integration tests"
task :integration do
sh "cd test/shell; sh run.sh"
end
desc "Run all tests"
2012-11-29 15:28:16 -05:00
if defined?(JRUBY_VERSION) and ENV['TRAVIS']
task :all => :test
else
task :all => [:test, "test:integration"]
end
2012-10-13 13:15:59 -04:00
end