Skip to content

Commit

Permalink
fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cofyc committed Sep 5, 2012
1 parent 4aa419c commit abbf5b0
Show file tree
Hide file tree
Showing 13 changed files with 215 additions and 78 deletions.
6 changes: 5 additions & 1 deletion Makefile
Expand Up @@ -6,13 +6,17 @@ BLIB = blib
P6LIB = $(PWD)/$(BLIB)/lib:$(PWD)/lib
CP = cp -p
MKDIR = mkdir -p
RM = rm -rf
BLIB_PIRS = $(BLIB)/lib/Redis.pir

all: $(BLIB_PIRS)

$(BLIB)/lib/Redis.pir: lib/Redis.pm
$(MKDIR) $(BLIB)/lib/
PERL6LIB=$(BLIB) $(PERL6) --target=pir --output=$@ $^
$(PERL6) --target=pir --output=$@ $^

test: all
env PERL6LIB=$(P6LIB) prove -e '$(PERL6)' -r t/

clean:
$(RM) $(BLIB)
3 changes: 1 addition & 2 deletions TODO
@@ -1,6 +1,5 @@
Commands
- sort

* fixbug: use recv on IO::Socket instead get
* complete method signatures
* support debug & timeout options
* support timeout options

0 comments on commit abbf5b0

Please sign in to comment.