diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Rakefile | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,6 @@ .*.sw[pon] coverage +tags pkg .nfs.* .idea @@ -343,6 +343,11 @@ else rm_rf EXT_PARSER_SRC end + desc "Update the tags file" + task :tags do + system 'ctags', *Dir['**/*.{rb,c,h,java}'] + end + file EXT_PARSER_SRC => RAGEL_PATH do cd EXT_PARSER_DIR do if RAGEL_CODEGEN == 'ragel' |