Sha256: 449d06b7a439a64e704b51599fa2514a5f782895cc6168910e1a38bd2de3143f
Contents?: true
Size: 579 Bytes
Versions: 47
Compression:
Stored size: 579 Bytes
Contents
# optional rake-compiler support in case somebody needs to cross compile begin mk = "ext/unicorn_http/Makefile" if File.readable?(mk) warn "run 'gmake -C ext/unicorn_http clean' and\n" \ "remove #{mk} before using rake-compiler" elsif ENV['VERSION'] unless File.readable?("ext/unicorn_http/unicorn_http.c") abort "run 'gmake ragel' or 'make ragel' to generate the Ragel source" end spec = Gem::Specification.load('unicorn.gemspec') require 'rake/extensiontask' Rake::ExtensionTask.new('unicorn_http', spec) end rescue LoadError end
Version data entries
47 entries across 47 versions & 6 rubygems