ctags.rb 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +2 -0
- data/Rakefile +23 -0
- data/ctags.rb.gemspec +23 -0
- data/ext/.gitignore +3 -0
- data/ext/extconf.rb +15 -0
- data/ext/vendor/exuberant-ctags/.gitignore +6 -0
- data/ext/vendor/exuberant-ctags/.indent.pro +31 -0
- data/ext/vendor/exuberant-ctags/COPYING +340 -0
- data/ext/vendor/exuberant-ctags/EXTENDING.html +386 -0
- data/ext/vendor/exuberant-ctags/FAQ +371 -0
- data/ext/vendor/exuberant-ctags/INSTALL +215 -0
- data/ext/vendor/exuberant-ctags/INSTALL.oth +73 -0
- data/ext/vendor/exuberant-ctags/MAINTAINERS +88 -0
- data/ext/vendor/exuberant-ctags/Makefile.in +222 -0
- data/ext/vendor/exuberant-ctags/NEWS +871 -0
- data/ext/vendor/exuberant-ctags/README +73 -0
- data/ext/vendor/exuberant-ctags/ant.c +42 -0
- data/ext/vendor/exuberant-ctags/argproc.c +505 -0
- data/ext/vendor/exuberant-ctags/args.c +274 -0
- data/ext/vendor/exuberant-ctags/args.h +63 -0
- data/ext/vendor/exuberant-ctags/asm.c +387 -0
- data/ext/vendor/exuberant-ctags/asp.c +328 -0
- data/ext/vendor/exuberant-ctags/awk.c +81 -0
- data/ext/vendor/exuberant-ctags/basic.c +203 -0
- data/ext/vendor/exuberant-ctags/beta.c +321 -0
- data/ext/vendor/exuberant-ctags/c.c +2932 -0
- data/ext/vendor/exuberant-ctags/cobol.c +50 -0
- data/ext/vendor/exuberant-ctags/config.h.in +277 -0
- data/ext/vendor/exuberant-ctags/configure +7704 -0
- data/ext/vendor/exuberant-ctags/configure.ac +532 -0
- data/ext/vendor/exuberant-ctags/ctags.1 +1186 -0
- data/ext/vendor/exuberant-ctags/ctags.h +28 -0
- data/ext/vendor/exuberant-ctags/ctags.html +2087 -0
- data/ext/vendor/exuberant-ctags/ctags.spec +40 -0
- data/ext/vendor/exuberant-ctags/debug.c +113 -0
- data/ext/vendor/exuberant-ctags/debug.h +70 -0
- data/ext/vendor/exuberant-ctags/descrip.mms +68 -0
- data/ext/vendor/exuberant-ctags/dosbatch.c +42 -0
- data/ext/vendor/exuberant-ctags/e_amiga.h +24 -0
- data/ext/vendor/exuberant-ctags/e_djgpp.h +47 -0
- data/ext/vendor/exuberant-ctags/e_mac.h +143 -0
- data/ext/vendor/exuberant-ctags/e_msoft.h +76 -0
- data/ext/vendor/exuberant-ctags/e_os2.h +37 -0
- data/ext/vendor/exuberant-ctags/e_qdos.h +34 -0
- data/ext/vendor/exuberant-ctags/e_riscos.h +58 -0
- data/ext/vendor/exuberant-ctags/e_vms.h +31 -0
- data/ext/vendor/exuberant-ctags/eiffel.c +1352 -0
- data/ext/vendor/exuberant-ctags/entry.c +847 -0
- data/ext/vendor/exuberant-ctags/entry.h +103 -0
- data/ext/vendor/exuberant-ctags/erlang.c +189 -0
- data/ext/vendor/exuberant-ctags/flex.c +2243 -0
- data/ext/vendor/exuberant-ctags/fortran.c +2197 -0
- data/ext/vendor/exuberant-ctags/general.h +127 -0
- data/ext/vendor/exuberant-ctags/get.c +669 -0
- data/ext/vendor/exuberant-ctags/get.h +50 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/all-wcprops +47 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/entries +112 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/README.txt.svn-base +5 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regcomp.c.svn-base +3818 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regex.c.svn-base +74 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regex.h.svn-base +575 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regex_internal.c.svn-base +1713 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regex_internal.h.svn-base +773 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/.svn/text-base/regexec.c.svn-base +4338 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/README.txt +5 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regcomp.c +3818 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regex.c +74 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regex.h +575 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regex_internal.c +1713 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regex_internal.h +773 -0
- data/ext/vendor/exuberant-ctags/gnu_regex/regexec.c +4338 -0
- data/ext/vendor/exuberant-ctags/html.c +49 -0
- data/ext/vendor/exuberant-ctags/jscript.c +1572 -0
- data/ext/vendor/exuberant-ctags/keyword.c +258 -0
- data/ext/vendor/exuberant-ctags/keyword.h +34 -0
- data/ext/vendor/exuberant-ctags/lisp.c +139 -0
- data/ext/vendor/exuberant-ctags/lregex.c +704 -0
- data/ext/vendor/exuberant-ctags/lua.c +133 -0
- data/ext/vendor/exuberant-ctags/mac.c +273 -0
- data/ext/vendor/exuberant-ctags/magic.diff +21 -0
- data/ext/vendor/exuberant-ctags/main.c +584 -0
- data/ext/vendor/exuberant-ctags/main.h +32 -0
- data/ext/vendor/exuberant-ctags/maintainer.mak +476 -0
- data/ext/vendor/exuberant-ctags/make.c +217 -0
- data/ext/vendor/exuberant-ctags/matlab.c +44 -0
- data/ext/vendor/exuberant-ctags/mk_bc3.mak +46 -0
- data/ext/vendor/exuberant-ctags/mk_bc5.mak +49 -0
- data/ext/vendor/exuberant-ctags/mk_djg.mak +18 -0
- data/ext/vendor/exuberant-ctags/mk_manx.mak +65 -0
- data/ext/vendor/exuberant-ctags/mk_mingw.mak +31 -0
- data/ext/vendor/exuberant-ctags/mk_mpw.mak +130 -0
- data/ext/vendor/exuberant-ctags/mk_mvc.mak +40 -0
- data/ext/vendor/exuberant-ctags/mk_os2.mak +104 -0
- data/ext/vendor/exuberant-ctags/mk_qdos.mak +100 -0
- data/ext/vendor/exuberant-ctags/mk_sas.mak +63 -0
- data/ext/vendor/exuberant-ctags/mkinstalldirs +40 -0
- data/ext/vendor/exuberant-ctags/ocaml.c +1842 -0
- data/ext/vendor/exuberant-ctags/options.c +1842 -0
- data/ext/vendor/exuberant-ctags/options.h +155 -0
- data/ext/vendor/exuberant-ctags/parse.c +677 -0
- data/ext/vendor/exuberant-ctags/parse.h +129 -0
- data/ext/vendor/exuberant-ctags/parsers.h +63 -0
- data/ext/vendor/exuberant-ctags/pascal.c +267 -0
- data/ext/vendor/exuberant-ctags/perl.c +382 -0
- data/ext/vendor/exuberant-ctags/php.c +237 -0
- data/ext/vendor/exuberant-ctags/python.c +771 -0
- data/ext/vendor/exuberant-ctags/qdos.c +106 -0
- data/ext/vendor/exuberant-ctags/read.c +569 -0
- data/ext/vendor/exuberant-ctags/read.h +116 -0
- data/ext/vendor/exuberant-ctags/readtags.c +959 -0
- data/ext/vendor/exuberant-ctags/readtags.h +252 -0
- data/ext/vendor/exuberant-ctags/rexx.c +39 -0
- data/ext/vendor/exuberant-ctags/routines.c +891 -0
- data/ext/vendor/exuberant-ctags/routines.h +134 -0
- data/ext/vendor/exuberant-ctags/ruby.c +408 -0
- data/ext/vendor/exuberant-ctags/scheme.c +111 -0
- data/ext/vendor/exuberant-ctags/sh.c +115 -0
- data/ext/vendor/exuberant-ctags/slang.c +41 -0
- data/ext/vendor/exuberant-ctags/sml.c +212 -0
- data/ext/vendor/exuberant-ctags/sort.c +230 -0
- data/ext/vendor/exuberant-ctags/sort.h +32 -0
- data/ext/vendor/exuberant-ctags/source.mak +122 -0
- data/ext/vendor/exuberant-ctags/sql.c +2112 -0
- data/ext/vendor/exuberant-ctags/strlist.c +281 -0
- data/ext/vendor/exuberant-ctags/strlist.h +54 -0
- data/ext/vendor/exuberant-ctags/tcl.c +116 -0
- data/ext/vendor/exuberant-ctags/tex.c +524 -0
- data/ext/vendor/exuberant-ctags/verilog.c +340 -0
- data/ext/vendor/exuberant-ctags/vhdl.c +835 -0
- data/ext/vendor/exuberant-ctags/vim.c +636 -0
- data/ext/vendor/exuberant-ctags/vstring.c +232 -0
- data/ext/vendor/exuberant-ctags/vstring.h +85 -0
- data/ext/vendor/exuberant-ctags/yacc.c +40 -0
- data/lib/ctags/exuberant.rb +45 -0
- data/lib/ctags/version.rb +3 -0
- data/lib/ctags.rb +6 -0
- data/test/test_ctags.rb +24 -0
- metadata +233 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* $Id: e_riscos.h 136 2002-03-08 22:35:19Z darren $
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2002, Andrew Wingate
|
|
5
|
+
*
|
|
6
|
+
* Author: Andrew Wingate <andy@sparse.net>
|
|
7
|
+
*
|
|
8
|
+
* This source code is released for free distribution under the terms of the
|
|
9
|
+
* GNU General Public License. It is provided on an as-is basis and no
|
|
10
|
+
* responsibility is accepted for its failure to perform as expected.
|
|
11
|
+
*
|
|
12
|
+
* Configures ctags for RISC OS environment.
|
|
13
|
+
*
|
|
14
|
+
* We currently use UnixLib. This file is subject to change if
|
|
15
|
+
* we move to using SharedCLibrary and libGNU.
|
|
16
|
+
*/
|
|
17
|
+
#ifndef E_RISCOS_H
|
|
18
|
+
#define E_RISCOS_H
|
|
19
|
+
|
|
20
|
+
#define MACROS_USE_PATTERNS 1
|
|
21
|
+
#define DEFAULT_FILE_FORMAT 2
|
|
22
|
+
#define INTERNAL_SORT 1 /* Not all systems will have installed sort(1) */
|
|
23
|
+
#define TMPDIR "<Wimp$ScrapDir>"
|
|
24
|
+
|
|
25
|
+
/* Various definitions for UnixLib */
|
|
26
|
+
#define STDC_HEADERS 1
|
|
27
|
+
#define HAVE_CHMOD 1
|
|
28
|
+
#define HAVE_CHSIZE 1
|
|
29
|
+
#define HAVE_CLOCK 1
|
|
30
|
+
#define HAVE_FGETPOS 1
|
|
31
|
+
#define HAVE_FNMATCH 1
|
|
32
|
+
#define HAVE_FTRUNCATE 1
|
|
33
|
+
#define HAVE_MKSTEMP 1
|
|
34
|
+
#define HAVE_OPENDIR 1
|
|
35
|
+
#define HAVE_PUTENV 1
|
|
36
|
+
#define HAVE_REGCOMP 1 /* Requires RegEx library */
|
|
37
|
+
#define HAVE_REMOVE 1
|
|
38
|
+
#define HAVE_SETENV 1
|
|
39
|
+
#define HAVE_STRERROR 1
|
|
40
|
+
#define HAVE_STRICMP 1
|
|
41
|
+
#define HAVE_STRNICMP 1
|
|
42
|
+
#define HAVE_STRSTR 1
|
|
43
|
+
#define HAVE_TIMES 1
|
|
44
|
+
#define HAVE_TRUNCATE 1
|
|
45
|
+
#define HAVE_DIRENT_H 1
|
|
46
|
+
#define HAVE_FCNTL_H 1
|
|
47
|
+
#define HAVE_FNMATCH_H 1
|
|
48
|
+
#define HAVE_STAT_H 1
|
|
49
|
+
#define HAVE_STDLIB_H 1
|
|
50
|
+
#define HAVE_STRING_H 1
|
|
51
|
+
#define HAVE_SYS_DIR_H 1
|
|
52
|
+
#define HAVE_SYS_STAT_H 1
|
|
53
|
+
#define HAVE_SYS_TIMES_H 1
|
|
54
|
+
#define HAVE_SYS_TYPES_H 1
|
|
55
|
+
#define HAVE_TIME_H 1
|
|
56
|
+
#define HAVE_UNISTD_H 1
|
|
57
|
+
|
|
58
|
+
#endif
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* $Id: e_vms.h 136 2002-03-08 22:35:19Z darren $
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2002, Darren Hiebert
|
|
5
|
+
*
|
|
6
|
+
* This source code is released for free distribution under the terms of the
|
|
7
|
+
* GNU General Public License.
|
|
8
|
+
*
|
|
9
|
+
* Configures ctags for VMS environment.
|
|
10
|
+
*/
|
|
11
|
+
#ifndef E_VMS_H
|
|
12
|
+
#define E_VMS_H
|
|
13
|
+
|
|
14
|
+
#define CASE_INSENSITIVE_FILENAMES 1
|
|
15
|
+
#define HAVE_STDLIB_H 1
|
|
16
|
+
#define HAVE_TIME_H 1
|
|
17
|
+
#ifdef VAXC
|
|
18
|
+
# define HAVE_STAT_H 1
|
|
19
|
+
# define HAVE_TYPES_H 1
|
|
20
|
+
#else
|
|
21
|
+
# define HAVE_FCNTL_H 1
|
|
22
|
+
# define HAVE_SYS_STAT_H 1
|
|
23
|
+
# define HAVE_SYS_TYPES_H 1
|
|
24
|
+
#endif
|
|
25
|
+
#define HAVE_CLOCK 1
|
|
26
|
+
#define HAVE_FGETPOS 1
|
|
27
|
+
#define HAVE_STRERROR 1
|
|
28
|
+
#define HAVE_STRSTR 1
|
|
29
|
+
#define HAVE_UNISTD_H 1
|
|
30
|
+
|
|
31
|
+
#endif
|