EventMachine: support deferrables in responses
[rainbows.git] / local.mk.sample
blob154c1c2c5dc1f172687dd7b254550a286ba3df63
1 # this is the local.mk file used by Eric Wong on his dev boxes.
2 # GNUmakefile will source local.mk in the top-level source tree
3 # if it is present.
5 # This is depends on a bunch of GNU-isms from bash, sed, touch.
7 RSYNC = rsync
8 DLEXT := so
9 gems := rack-1.0.1
10 # gems += unicorn-0.95.1 # installed via setup.rb
11 gems += rev-0.3.1 # up to 0.3.2 once it's out for 1.8
12 gems += iobuffer-0.1.3
13 gems += eventmachine-0.12.10
14 gems += async_sinatra-0.1.5 sinatra-0.9.4
15 gems += espace-neverblock-0.1.6.1
17 # Avoid loading rubygems to speed up tests because gmake is
18 # fork+exec heavy with Ruby.
19 prefix = $(HOME)
20 ifeq ($(r19),)
21   RUBY := $(prefix)/bin/ruby
22   gem_paths := $(addprefix $(prefix)/lib/ruby/gems/1.8/gems/,$(gems))
23 else
24   prefix := $(prefix)/ruby-1.9
25   export PATH := $(prefix)/bin:$(PATH)
26   RUBY := $(prefix)/bin/ruby --disable-gems
27   gems += case-0.5 revactor-0.1.5
28   gem_paths := $(addprefix $(prefix)/lib/ruby/gems/1.9.1/gems/,$(gems))
29 endif
31 ifdef gem_paths
32   sp :=
33   sp +=
34   export RUBYLIB := $(subst $(sp),:,$(addsuffix /lib,$(gem_paths)))
35 endif
37 # pipefail is THE reason to use bash (v3+) or never revisions of ksh93
38 # SHELL := /bin/bash -e -o pipefail
39 SHELL := /bin/ksh93 -e -o pipefail
41 # trace execution of tests
42 # TRACER = strace -f -o $(t_pfx).strace -s 100000
43 TRACER = /usr/bin/time -v -o $(t_pfx).time
45 full-test: test-18 test-19
46 test-18:
47         $(MAKE) test 2>&1 | sed -u -e 's!^!1.8 !'
48 test-19:
49         $(MAKE) test r19=t 2>&1 | sed -u -e 's!^!1.9 !'
51 latest: NEWS
52         @awk 'BEGIN{RS="=== ";ORS=""}NR==2{sub(/\n$$/,"");print RS""$$0 }' < $<
54 # publishes docs to http://rainbows.rubyforge.org
55 publish_doc:
56         -git set-file-times
57         $(RM) -r doc ChangeLog NEWS
58         $(MAKE) doc LOG_VERSION=$(shell git tag -l | tail -1)
59         $(MAKE) -s latest > doc/LATEST
60         find doc/images doc/js -type f | \
61                 TZ=UTC xargs touch -d '1970-01-01 00:00:00' doc/rdoc.css
62         $(MAKE) doc_gz
63         chmod 644 $$(find doc -type f)
64         $(RSYNC) -av doc/ rubyforge.org:/var/www/gforge-projects/rainbows/
65         $(RSYNC) -av doc/ dcvr:/srv/rainbows/
66         git ls-files | xargs touch
68 # Create gzip variants of the same timestamp as the original so nginx
69 # "gzip_static on" can serve the gzipped versions directly.
70 doc_gz: docs = $(shell find doc -type f ! -regex '^.*\.\(gif\|jpg\|png\|gz\)$$')
71 doc_gz:
72         touch doc/NEWS.atom.xml -d "$$(awk 'NR==1{print $$4,$$5,$$6}' NEWS)"
73         for i in $(docs); do \
74           gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
76 # launches any of the following shells with RUBYLIB set
77 irb sh bash ksh:
78         $@