mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
9 lines
227 B
Ruby
9 lines
227 B
Ruby
# use rake-compiler for building the extension
|
|
require 'rake/extensiontask'
|
|
|
|
# build http11 C extension
|
|
Rake::ExtensionTask.new('http11', HOE.spec) do |ext|
|
|
end
|
|
|
|
# ensure things are built prior testing
|
|
task :test => [:compile]
|