specky/Makefile
author mahlon
Mon, 20 Apr 2009 00:57:06 +0000
branchvim-stuff
changeset 6 31d00503e038
parent 5 3346aa8d5364
child 11 a9ebb6c22d14
permissions -rw-r--r--
* Small documentation updates * Removed g:speckyVertSplit option if favor of g:speckyWindowType, which also supports opening rDoc and spec output in a tabbed window. The default is now tabbed window -- use 'g:speckyWindowType = 2' to replicate the old behavior. * Support syntax highlighting for 'pending' specs that are implemented and expected to fail, instead of just pendings for 'not implemented yet'. * Allow rdoc lookups from within spec mode. * Add ftplugin for rspec, so rspec files behaviorally act the same as ruby. * Banner creation now respects current indentation level.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     1
PLUGIN = specky
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     3
SOURCE =  syntax/rdoc.vim
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     4
SOURCE += syntax/specrun.vim
5
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
     5
SOURCE += syntax/rspec.vim
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
     6
SOURCE += ftdetect/rspec.vim
6
31d00503e038 * Small documentation updates
mahlon
parents: 5
diff changeset
     7
SOURCE += ftplugin/rspec.vim
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     8
SOURCE += doc/specky.txt
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     9
SOURCE += plugin/specky.vim
5
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
    10
SOURCE += snippets/rspec.snippets
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    11
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    12
${PLUGIN}.vba: ${SOURCE}
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    13
	vim --cmd 'let g:plugin_name="${PLUGIN}"' -s build.vim
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    14
	gzip ${PLUGIN}.vba
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    15
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    16
install:
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    17
	rsync -Rv ${SOURCE} ${HOME}/.vim/
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    18
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    19
clean:
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    20
	rm ${PLUGIN}.vba