Skip to content

Commit

Permalink
major update
Browse files Browse the repository at this point in the history
updated; rewrite of code base
updated: documentation
removed; info, error, success types (use spawn to make these)
fixed; ie flickering bug
fixed; demo page not working for ie7,8
added; create and spawn support
  • Loading branch information
wavded committed May 7, 2012
1 parent 0ba1368 commit bf4610a
Show file tree
Hide file tree
Showing 14 changed files with 561 additions and 516 deletions.
21 changes: 20 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
all:build
project=humane

all: tmux

watch:
@echo "Notice: Stylus + Nib + Canvas Required: npm install -g stylus nib canvas"
Expand All @@ -8,3 +10,20 @@ build:
@echo "Notice: UglifyJS Required: npm install -g uglify-js"
@uglifyjs humane.js > humane.min.js
@echo "Built uglified JS - humane.min.js"

tmux_setup:
@tmux new-session -s ${project} -d -n workspace
@tmux split-window -t ${project} -h
@tmux split-window -t ${project} -v
@tmux select-pane -t ${project}:1.0
@tmux select-pane -t ${project}:1.1
@tmux resize-pane -t ${project} -D 2
@tmux select-layout -t ${project} main-vertical
@tmux send-keys -t ${project}:1.0 'vim' C-m
@tmux send-keys -t ${project}:1.1 'make watch' C-m
@tmux select-pane -t ${project}:1.0
@tmux resize-pane -t ${project} -R 40

tmux:
@if ! tmux has-session -t ${project}; then exec make tmux_setup; fi
@tmux attach -t ${project}
Loading

0 comments on commit bf4610a

Please sign in to comment.