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

Fixes the missing .so files on the win32 side.

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@326 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-08-14 20:37:07 +00:00
parent dc57f5956b
commit 41ed5aff94

View file

@ -67,9 +67,10 @@ setup_gem(name, version) do |spec|
if RUBY_PLATFORM =~ /mswin/
Dir.chdir "projects/mongrel_service" do
sh %{rake install }
`rake install`
end
spec.files << 'ext/http11/http11.so'
spec.files += ['ext/http11/http11.so']
spec.files += ['lib/http11.so']
spec.extensions.clear
spec.platform = Gem::Platform::WIN32
else