View | Details | Raw Unified | Return to bug 224459 | Differences between
and this patch

Collapse All | Expand All

(-)w/devel/shards/Makefile (+35 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=		shards
4
DISTVERSION=		0.7.2
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=		devel
7
8
MAINTAINER=	greg@unrelenting.technology
9
COMMENT=	Dependency manager for the Crystal programming language
10
11
LICENSE=	APACHE20
12
13
BUILD_DEPENDS=	crystal:lang/crystal
14
LIB_DEPENDS=	libyaml.so:textproc/libyaml \
15
		libpcre.so:devel/pcre \
16
		libgc-threaded.so:devel/boehm-gc-threaded \
17
		libevent.so:devel/libevent
18
RUN_DEPENDS=	git:devel/git
19
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	crystal-lang
22
23
PLIST_FILES=	bin/shards \
24
		man/man1/shards.1.gz \
25
		man/man5/shard.yml.5.gz
26
27
do-build:
28
	cd ${WRKSRC} && crystal build --release --no-debug -o bin/shards src/shards.cr
29
30
do-install:
31
	${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/bin/shards ${STAGEDIR}${PREFIX}/bin/
32
	${INSTALL_MAN} ${INSTALL_WRKSRC}/src/man/shards.1 ${STAGEDIR}${MANPREFIX}/man/man1/
33
	${INSTALL_MAN} ${INSTALL_WRKSRC}/src/man/shard.yml.5 ${STAGEDIR}${MANPREFIX}/man/man5/
34
35
.include <bsd.port.mk>
(-)w/devel/shards/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1513699120
2
SHA256 (crystal-lang-shards-v0.7.2_GH0.tar.gz) = 97a3681e74d2fdcba0575f6906f4ba0aefc709a2eb672c7289c63176ff4f3be2
3
SIZE (crystal-lang-shards-v0.7.2_GH0.tar.gz) = 30398
(-)w/devel/shards/pkg-descr (+4 lines)
Added Link Here
1
Shards is a dependency manager for the Crystal programming language. It
2
downloads dependencies with Git, ensuring correct versions for all dependencies.
3
4
WWW: https://github.com/crystal-lang/shards
(-)w/lang/crystal/Makefile (+91 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	crystal
4
DISTVERSION=	0.24.0
5
CATEGORIES=	lang
6
MASTER_SITES=	https://unrelentingtech.s3.dualstack.eu-west-1.amazonaws.com/crystal/:bootstrap
7
DISTFILES=	${BOOTSTRAP_PATH}:bootstrap
8
DIST_SUBDIR=	${PORTNAME}
9
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
10
11
MAINTAINER=	greg@unrelenting.technology
12
COMMENT=	Language with Ruby-like syntax and static type checking
13
14
LICENSE=	APACHE20
15
16
ONLY_FOR_ARCHS?=	amd64
17
ONLY_FOR_ARCHS_REASON=	requires prebuilt bootstrap compiler
18
19
LIB_DEPENDS=	libgc-threaded.so:devel/boehm-gc-threaded \
20
		libevent.so:devel/libevent \
21
		libpcre.so:devel/pcre
22
BUILD_DEPENDS=	llvm-config${LLVM_VER}:devel/llvm${LLVM_VER}
23
24
LLVM_VER?=	40
25
26
USES=		compiler gmake pkgconfig
27
28
USE_GITHUB=	yes
29
GH_ACCOUNT=	crystal-lang
30
31
MAKE_ARGS=	SHELL=sh \
32
		LLVM_CONFIG=llvm-config${LLVM_VER} \
33
		FLAGS="--release --no-debug" \
34
		EXPORTS='CRYSTAL_CONFIG_PATH="lib:${PREFIX}/lib/${PORTNAME}"' \
35
		CRYSTAL_CACHE_DIR="${WRKDIR}/cache"
36
37
PORTDOCS=	*
38
PORTEXAMPLES=	*
39
40
OPTIONS_DEFINE=		DOCS EXAMPLES BASH ZSH
41
OPTIONS_DEFAULT=	DOCS EXAMPLES BASH ZSH
42
OPTIONS_SUB=		yes
43
44
.include <bsd.port.options.mk>
45
46
.if ${OSVERSION} >= 1200000
47
BOOTSTRAP_PATH=	crystal-0.24.0-freebsd12.0
48
.else
49
BOOTSTRAP_PATH=	crystal-0.24.0-freebsd11.1
50
.endif
51
.if ${OSVERSION} < 1100000
52
IGNORE=		not supported on 10.x or older
53
.endif
54
.if ${OPSYS} != FreeBSD
55
IGNORE=		not supported on anything but FreeBSD
56
.endif
57
58
post-extract:
59
	${MKDIR} ${WRKSRC}/.build
60
	${CP} ${DISTDIR}/${DIST_SUBDIR}/${BOOTSTRAP_PATH} ${WRKSRC}/.build/crystal
61
	${CHMOD} +x ${WRKSRC}/.build/crystal
62
63
post-patch:
64
	${LN} -s x86_64-portbld-freebsd ${WRKSRC}/src/lib_c/x86_64-unknown-freebsd
65
66
do-build-DOCS-on:
67
	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} doc \
68
			CRYSTAL_CACHE_DIR="${WRKDIR}/cache"
69
70
do-install:
71
	${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/.build/crystal ${STAGEDIR}${PREFIX}/bin/
72
	${INSTALL_MAN} ${INSTALL_WRKSRC}/man/crystal.1 ${STAGEDIR}${MANPREFIX}/man/man1/
73
	(cd ${INSTALL_WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/${PORTNAME})
74
75
do-install-DOCS-on:
76
	(cd ${INSTALL_WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
77
78
do-install-EXAMPLES-on:
79
	(cd ${INSTALL_WRKSRC}/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
80
81
do-install-BASH-on:
82
	${MKDIR} ${STAGEDIR}${LOCALBASE}/etc/bash_completion.d
83
	${INSTALL_DATA} ${INSTALL_WRKSRC}/etc/completion.bash \
84
			${STAGEDIR}${LOCALBASE}/etc/bash_completion.d/_crystal.bash
85
86
do-install-ZSH-on:
87
	${MKDIR} ${STAGEDIR}${LOCALBASE}/share/zsh/site-functions
88
	${INSTALL_DATA} ${INSTALL_WRKSRC}/etc/completion.zsh \
89
			${STAGEDIR}${LOCALBASE}/share/zsh/site-functions/_crystal
90
91
.include <bsd.port.mk>
(-)w/lang/crystal/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1513694037
2
SHA256 (crystal/crystal-0.24.0-freebsd12.0) = 88bca1a688290da9f0bb97bb2d4a8d0b10a1b2fc545c692ded44b82eb9c5ccf8
3
SIZE (crystal/crystal-0.24.0-freebsd12.0) = 44264868
4
SHA256 (crystal/crystal-lang-crystal-0.24.0_GH0.tar.gz) = c34f4326ee576f60b8960e331aae8d5265a12b30707582e1f5c6c6032d364a80
5
SIZE (crystal/crystal-lang-crystal-0.24.0_GH0.tar.gz) = 1724569
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_dirent.cr (+26 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/dirent.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/dirent.cr
3
@@ -4,10 +4,21 @@ lib LibC
4
   type DIR = Void
5
 
6
   struct Dirent
7
-    d_fileno : UInt
8
+    {% if flag?(:"freebsd12.0") %}
9
+      d_fileno : ULong
10
+      d_off : ULong
11
+    {% else %}
12
+      d_fileno : UInt
13
+    {% end %}
14
     d_reclen : UShort
15
     d_type : UChar
16
-    d_namlen : UChar
17
+    {% if flag?(:"freebsd12.0") %}
18
+      d_pad0 : UChar
19
+      d_namlen : UShort
20
+      d_pad1 : UShort
21
+    {% else %}
22
+      d_namlen : UChar
23
+    {% end %}
24
     d_name : StaticArray(Char, 256)
25
   end
26
 
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_sys_stat.cr (+50 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr
3
@@ -31,23 +31,40 @@ lib LibC
4
   struct Stat
5
     st_dev : DevT
6
     st_ino : InoT
7
-    st_mode : ModeT
8
-    st_nlink : NlinkT
9
+    {% if flag?(:"freebsd12.0") %}
10
+      st_nlink : NlinkT
11
+      st_mode : ModeT
12
+      st_pad0 : UShort
13
+    {% else %}
14
+      st_mode : ModeT
15
+      st_nlink : NlinkT
16
+    {% end %}
17
     st_uid : UidT
18
     st_gid : GidT
19
+    {% if flag?(:"freebsd12.0") %}
20
+      st_pad1 : UInt
21
+    {% end %}
22
     st_rdev : DevT
23
     st_atim : Timespec
24
     st_mtim : Timespec
25
     st_ctim : Timespec
26
+    {% if flag?(:"freebsd12.0") %}
27
+      st_birthtim : Timespec
28
+    {% end %}
29
     st_size : OffT
30
     st_blocks : BlkcntT
31
     st_blksize : BlksizeT
32
     st_flags : FflagsT
33
-    st_gen : UInt
34
-    st_lspare : Int
35
-    st_birthtim : Timespec
36
-    __reserved_17 : UInt
37
-    __reserved_18 : UInt
38
+    {% if flag?("freebsd12.0") %}
39
+      st_gen : ULong
40
+      st_spare : StaticArray(ULong, 10)
41
+    {% else %}
42
+      st_gen : UInt
43
+      st_lspare : Int
44
+      st_birthtim : Timespec
45
+      __reserved_17 : UInt
46
+      __reserved_18 : UInt
47
+    {% end %}
48
   end
49
 
50
   fun chmod(x0 : Char*, x1 : ModeT) : Int
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_sys_types.cr (+22 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/sys/types.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/sys/types.cr
3
@@ -9,9 +9,17 @@ lib LibC
4
   alias DevT = UInt
5
   alias GidT = UInt
6
   alias IdT = Long
7
-  alias InoT = UInt
8
+  {% if flag?(:"freebsd12.0") %}
9
+    alias InoT = ULong
10
+  {% else %}
11
+    alias InoT = UInt
12
+  {% end %}
13
   alias ModeT = UShort
14
-  alias NlinkT = UShort
15
+  {% if flag?(:"freebsd12.0") %}
16
+    alias NlinkT = ULong
17
+  {% else %}
18
+    alias NlinkT = UShort
19
+  {% end %}
20
   alias OffT = Long
21
   alias PidT = Int
22
   type PthreadAttrT = Void*
(-)w/lang/crystal/pkg-descr (+9 lines)
Added Link Here
1
Crystal is a programming language with the following goals:
2
3
- Have a syntax similar to Ruby (but compatibility with it is not a goal)
4
- Be statically type-checked, but without having to specify the type of variables or method arguments.
5
- Be able to call C code by writing bindings to it in Crystal.
6
- Have compile-time evaluation and generation of code, to avoid boilerplate code.
7
- Compile to efficient native code.
8
9
WWW: https://crystal-lang.org
(-)w/lang/crystal/pkg-message (+5 lines)
Added Link Here
1
When building Crystal code with the --release flag, add the --no-debug flag to
2
avoid LLVM assertion errors.
3
4
Install textproc/libyaml for YAML support, math/gmp for BigInt support,
5
textproc/libxml2 for XML support.
(-)w/lang/crystal/pkg-plist (+822 lines)
Added Link Here
1
bin/crystal
2
%%BASH%%etc/bash_completion.d/_crystal.bash
3
lib/crystal/adler32/adler32.cr
4
lib/crystal/array.cr
5
lib/crystal/atomic.cr
6
lib/crystal/base64.cr
7
lib/crystal/benchmark.cr
8
lib/crystal/benchmark/bm.cr
9
lib/crystal/benchmark/ips.cr
10
lib/crystal/big.cr
11
lib/crystal/big/big_float.cr
12
lib/crystal/big/big_int.cr
13
lib/crystal/big/big_rational.cr
14
lib/crystal/big/json.cr
15
lib/crystal/big/lib_gmp.cr
16
lib/crystal/big/yaml.cr
17
lib/crystal/bit_array.cr
18
lib/crystal/bool.cr
19
lib/crystal/box.cr
20
lib/crystal/callstack.cr
21
lib/crystal/callstack/lib_unwind.cr
22
lib/crystal/char.cr
23
lib/crystal/char/reader.cr
24
lib/crystal/class.cr
25
lib/crystal/colorize.cr
26
lib/crystal/comparable.cr
27
lib/crystal/compiler/crystal.cr
28
lib/crystal/compiler/crystal/codegen/asm.cr
29
lib/crystal/compiler/crystal/codegen/ast.cr
30
lib/crystal/compiler/crystal/codegen/cache_dir.cr
31
lib/crystal/compiler/crystal/codegen/call.cr
32
lib/crystal/compiler/crystal/codegen/cast.cr
33
lib/crystal/compiler/crystal/codegen/class_var.cr
34
lib/crystal/compiler/crystal/codegen/codegen.cr
35
lib/crystal/compiler/crystal/codegen/cond.cr
36
lib/crystal/compiler/crystal/codegen/const.cr
37
lib/crystal/compiler/crystal/codegen/context.cr
38
lib/crystal/compiler/crystal/codegen/crystal_llvm_builder.cr
39
lib/crystal/compiler/crystal/codegen/debug.cr
40
lib/crystal/compiler/crystal/codegen/exception.cr
41
lib/crystal/compiler/crystal/codegen/fun.cr
42
lib/crystal/compiler/crystal/codegen/link.cr
43
lib/crystal/compiler/crystal/codegen/llvm_builder_helper.cr
44
lib/crystal/compiler/crystal/codegen/llvm_id.cr
45
lib/crystal/compiler/crystal/codegen/llvm_typer.cr
46
lib/crystal/compiler/crystal/codegen/match.cr
47
lib/crystal/compiler/crystal/codegen/phi.cr
48
lib/crystal/compiler/crystal/codegen/primitives.cr
49
lib/crystal/compiler/crystal/codegen/target_machine.cr
50
lib/crystal/compiler/crystal/codegen/type_id.cr
51
lib/crystal/compiler/crystal/codegen/types.cr
52
lib/crystal/compiler/crystal/command.cr
53
lib/crystal/compiler/crystal/command/cursor.cr
54
lib/crystal/compiler/crystal/command/deps.cr
55
lib/crystal/compiler/crystal/command/docs.cr
56
lib/crystal/compiler/crystal/command/env.cr
57
lib/crystal/compiler/crystal/command/eval.cr
58
lib/crystal/compiler/crystal/command/format.cr
59
lib/crystal/compiler/crystal/command/playground.cr
60
lib/crystal/compiler/crystal/command/spec.cr
61
lib/crystal/compiler/crystal/compiler.cr
62
lib/crystal/compiler/crystal/config.cr
63
lib/crystal/compiler/crystal/crystal_path.cr
64
lib/crystal/compiler/crystal/exception.cr
65
lib/crystal/compiler/crystal/formatter.cr
66
lib/crystal/compiler/crystal/macros.cr
67
lib/crystal/compiler/crystal/macros/interpreter.cr
68
lib/crystal/compiler/crystal/macros/macros.cr
69
lib/crystal/compiler/crystal/macros/methods.cr
70
lib/crystal/compiler/crystal/program.cr
71
lib/crystal/compiler/crystal/progress_tracker.cr
72
lib/crystal/compiler/crystal/semantic.cr
73
lib/crystal/compiler/crystal/semantic/abstract_def_checker.cr
74
lib/crystal/compiler/crystal/semantic/ast.cr
75
lib/crystal/compiler/crystal/semantic/bindings.cr
76
lib/crystal/compiler/crystal/semantic/call.cr
77
lib/crystal/compiler/crystal/semantic/call_error.cr
78
lib/crystal/compiler/crystal/semantic/class_vars_initializer_visitor.cr
79
lib/crystal/compiler/crystal/semantic/cleanup_transformer.cr
80
lib/crystal/compiler/crystal/semantic/conversions.cr
81
lib/crystal/compiler/crystal/semantic/cover.cr
82
lib/crystal/compiler/crystal/semantic/default_arguments.cr
83
lib/crystal/compiler/crystal/semantic/exception.cr
84
lib/crystal/compiler/crystal/semantic/filters.cr
85
lib/crystal/compiler/crystal/semantic/fix_missing_types.cr
86
lib/crystal/compiler/crystal/semantic/flags.cr
87
lib/crystal/compiler/crystal/semantic/hooks.cr
88
lib/crystal/compiler/crystal/semantic/instance_vars_initializer_visitor.cr
89
lib/crystal/compiler/crystal/semantic/lib.cr
90
lib/crystal/compiler/crystal/semantic/literal_expander.cr
91
lib/crystal/compiler/crystal/semantic/main_visitor.cr
92
lib/crystal/compiler/crystal/semantic/match.cr
93
lib/crystal/compiler/crystal/semantic/math_interpreter.cr
94
lib/crystal/compiler/crystal/semantic/method_lookup.cr
95
lib/crystal/compiler/crystal/semantic/method_missing.cr
96
lib/crystal/compiler/crystal/semantic/new.cr
97
lib/crystal/compiler/crystal/semantic/normalizer.cr
98
lib/crystal/compiler/crystal/semantic/path_lookup.cr
99
lib/crystal/compiler/crystal/semantic/recursive_struct_checker.cr
100
lib/crystal/compiler/crystal/semantic/restrictions.cr
101
lib/crystal/compiler/crystal/semantic/semantic_visitor.cr
102
lib/crystal/compiler/crystal/semantic/suggestions.cr
103
lib/crystal/compiler/crystal/semantic/to_s.cr
104
lib/crystal/compiler/crystal/semantic/top_level_visitor.cr
105
lib/crystal/compiler/crystal/semantic/transformer.cr
106
lib/crystal/compiler/crystal/semantic/type_declaration_processor.cr
107
lib/crystal/compiler/crystal/semantic/type_declaration_visitor.cr
108
lib/crystal/compiler/crystal/semantic/type_guess_visitor.cr
109
lib/crystal/compiler/crystal/semantic/type_lookup.cr
110
lib/crystal/compiler/crystal/semantic/type_merge.cr
111
lib/crystal/compiler/crystal/syntax.cr
112
lib/crystal/compiler/crystal/syntax/ast.cr
113
lib/crystal/compiler/crystal/syntax/exception.cr
114
lib/crystal/compiler/crystal/syntax/lexer.cr
115
lib/crystal/compiler/crystal/syntax/location.cr
116
lib/crystal/compiler/crystal/syntax/parser.cr
117
lib/crystal/compiler/crystal/syntax/to_s.cr
118
lib/crystal/compiler/crystal/syntax/token.cr
119
lib/crystal/compiler/crystal/syntax/transformer.cr
120
lib/crystal/compiler/crystal/syntax/virtual_file.cr
121
lib/crystal/compiler/crystal/syntax/visitor.cr
122
lib/crystal/compiler/crystal/tools/context.cr
123
lib/crystal/compiler/crystal/tools/doc/constant.cr
124
lib/crystal/compiler/crystal/tools/doc/generator.cr
125
lib/crystal/compiler/crystal/tools/doc/highlighter.cr
126
lib/crystal/compiler/crystal/tools/doc/html/css/style.css
127
lib/crystal/compiler/crystal/tools/doc/html/js/doc.js
128
lib/crystal/compiler/crystal/tools/doc/html/list_items.html
129
lib/crystal/compiler/crystal/tools/doc/html/main.html
130
lib/crystal/compiler/crystal/tools/doc/html/method_detail.html
131
lib/crystal/compiler/crystal/tools/doc/html/method_summary.html
132
lib/crystal/compiler/crystal/tools/doc/html/methods_inherited.html
133
lib/crystal/compiler/crystal/tools/doc/html/other_types.html
134
lib/crystal/compiler/crystal/tools/doc/html/type.html
135
lib/crystal/compiler/crystal/tools/doc/item.cr
136
lib/crystal/compiler/crystal/tools/doc/macro.cr
137
lib/crystal/compiler/crystal/tools/doc/markdown_doc_renderer.cr
138
lib/crystal/compiler/crystal/tools/doc/method.cr
139
lib/crystal/compiler/crystal/tools/doc/templates.cr
140
lib/crystal/compiler/crystal/tools/doc/type.cr
141
lib/crystal/compiler/crystal/tools/expand.cr
142
lib/crystal/compiler/crystal/tools/formatter.cr
143
lib/crystal/compiler/crystal/tools/implementations.cr
144
lib/crystal/compiler/crystal/tools/init.cr
145
lib/crystal/compiler/crystal/tools/init/template/editorconfig.ecr
146
lib/crystal/compiler/crystal/tools/init/template/example.cr.ecr
147
lib/crystal/compiler/crystal/tools/init/template/example_spec.cr.ecr
148
lib/crystal/compiler/crystal/tools/init/template/gitignore.ecr
149
lib/crystal/compiler/crystal/tools/init/template/license.ecr
150
lib/crystal/compiler/crystal/tools/init/template/readme.md.ecr
151
lib/crystal/compiler/crystal/tools/init/template/shard.yml.ecr
152
lib/crystal/compiler/crystal/tools/init/template/spec_helper.cr.ecr
153
lib/crystal/compiler/crystal/tools/init/template/travis.yml.ecr
154
lib/crystal/compiler/crystal/tools/init/template/version.cr.ecr
155
lib/crystal/compiler/crystal/tools/playground/agent.cr
156
lib/crystal/compiler/crystal/tools/playground/agent_instrumentor_transformer.cr
157
lib/crystal/compiler/crystal/tools/playground/public/application.css
158
lib/crystal/compiler/crystal/tools/playground/public/application.js
159
lib/crystal/compiler/crystal/tools/playground/public/favicon.ico
160
lib/crystal/compiler/crystal/tools/playground/public/icon.png
161
lib/crystal/compiler/crystal/tools/playground/public/session.js
162
lib/crystal/compiler/crystal/tools/playground/public/settings.js
163
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/ansi_up.js
164
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/theme.css
165
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/addon/comment/comment.js
166
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/lib/codemirror.css
167
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/lib/codemirror.js
168
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/mode/crystal/crystal.js
169
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/theme/neat.css
170
lib/crystal/compiler/crystal/tools/playground/public/vendor/jquery-2.2.1.min.js
171
lib/crystal/compiler/crystal/tools/playground/public/vendor/materialize-v0.97.5/css/materialize.min.css
172
lib/crystal/compiler/crystal/tools/playground/public/vendor/materialize-v0.97.5/js/materialize.min.js
173
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.css
174
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.eot
175
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.svg
176
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.ttf
177
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.woff
178
lib/crystal/compiler/crystal/tools/playground/server.cr
179
lib/crystal/compiler/crystal/tools/playground/views/_about.html
180
lib/crystal/compiler/crystal/tools/playground/views/_index.html
181
lib/crystal/compiler/crystal/tools/playground/views/_settings.html
182
lib/crystal/compiler/crystal/tools/playground/views/_workbook.html.ecr
183
lib/crystal/compiler/crystal/tools/playground/views/layout.html.ecr
184
lib/crystal/compiler/crystal/tools/print_hierarchy.cr
185
lib/crystal/compiler/crystal/tools/print_types_visitor.cr
186
lib/crystal/compiler/crystal/tools/table_print.cr
187
lib/crystal/compiler/crystal/tools/typed_def_processor.cr
188
lib/crystal/compiler/crystal/types.cr
189
lib/crystal/compiler/crystal/util.cr
190
lib/crystal/complex.cr
191
lib/crystal/concurrent.cr
192
lib/crystal/concurrent/channel.cr
193
lib/crystal/concurrent/error.cr
194
lib/crystal/concurrent/future.cr
195
lib/crystal/concurrent/scheduler.cr
196
lib/crystal/crc32/crc32.cr
197
lib/crystal/crypto/bcrypt.cr
198
lib/crystal/crypto/bcrypt/base64.cr
199
lib/crystal/crypto/bcrypt/blowfish.cr
200
lib/crystal/crypto/bcrypt/password.cr
201
lib/crystal/crypto/blowfish.cr
202
lib/crystal/crypto/subtle.cr
203
lib/crystal/crystal/hasher.cr
204
lib/crystal/crystal/main.cr
205
lib/crystal/crystal/system.cr
206
lib/crystal/crystal/system/random.cr
207
lib/crystal/crystal/system/time.cr
208
lib/crystal/crystal/system/unix/arc4random.cr
209
lib/crystal/crystal/system/unix/getrandom.cr
210
lib/crystal/crystal/system/unix/hostname.cr
211
lib/crystal/crystal/system/unix/sysconf_cpucount.cr
212
lib/crystal/crystal/system/unix/sysctl_cpucount.cr
213
lib/crystal/crystal/system/unix/time.cr
214
lib/crystal/crystal/system/unix/urandom.cr
215
lib/crystal/csv.cr
216
lib/crystal/csv/builder.cr
217
lib/crystal/csv/error.cr
218
lib/crystal/csv/lexer.cr
219
lib/crystal/csv/lexer/io_based.cr
220
lib/crystal/csv/lexer/string_based.cr
221
lib/crystal/csv/parser.cr
222
lib/crystal/csv/token.cr
223
lib/crystal/debug/dwarf.cr
224
lib/crystal/debug/dwarf/abbrev.cr
225
lib/crystal/debug/dwarf/info.cr
226
lib/crystal/debug/dwarf/line_numbers.cr
227
lib/crystal/debug/dwarf/strings.cr
228
lib/crystal/debug/elf.cr
229
lib/crystal/debug/mach_o.cr
230
lib/crystal/deque.cr
231
lib/crystal/digest.cr
232
lib/crystal/digest/base.cr
233
lib/crystal/digest/md5.cr
234
lib/crystal/digest/sha1.cr
235
lib/crystal/dir.cr
236
lib/crystal/dir/glob.cr
237
lib/crystal/dl.cr
238
lib/crystal/docs_main.cr
239
lib/crystal/ecr.cr
240
lib/crystal/ecr/lexer.cr
241
lib/crystal/ecr/macros.cr
242
lib/crystal/ecr/process.cr
243
lib/crystal/ecr/processor.cr
244
lib/crystal/empty.cr
245
lib/crystal/enum.cr
246
lib/crystal/enumerable.cr
247
lib/crystal/env.cr
248
lib/crystal/errno.cr
249
lib/crystal/event.cr
250
lib/crystal/event/lib_event2.cr
251
lib/crystal/event/signal_child_handler.cr
252
lib/crystal/event/signal_handler.cr
253
lib/crystal/exception.cr
254
lib/crystal/ext.cr
255
lib/crystal/ext/libcrystal.a
256
lib/crystal/ext/sigfault.c
257
lib/crystal/ext/sigfault.o
258
lib/crystal/fiber.cr
259
lib/crystal/file.cr
260
lib/crystal/file/flock.cr
261
lib/crystal/file/preader.cr
262
lib/crystal/file/stat.cr
263
lib/crystal/file_utils.cr
264
lib/crystal/flate/flate.cr
265
lib/crystal/flate/reader.cr
266
lib/crystal/flate/writer.cr
267
lib/crystal/float.cr
268
lib/crystal/float/printer.cr
269
lib/crystal/float/printer/cached_powers.cr
270
lib/crystal/float/printer/diy_fp.cr
271
lib/crystal/float/printer/grisu3.cr
272
lib/crystal/float/printer/ieee.cr
273
lib/crystal/gc.cr
274
lib/crystal/gc/boehm.cr
275
lib/crystal/gc/null.cr
276
lib/crystal/gzip/gzip.cr
277
lib/crystal/gzip/header.cr
278
lib/crystal/gzip/reader.cr
279
lib/crystal/gzip/writer.cr
280
lib/crystal/hash.cr
281
lib/crystal/html.cr
282
lib/crystal/html/entities.cr
283
lib/crystal/http.cr
284
lib/crystal/http/client.cr
285
lib/crystal/http/client/response.cr
286
lib/crystal/http/common.cr
287
lib/crystal/http/content.cr
288
lib/crystal/http/cookie.cr
289
lib/crystal/http/formdata.cr
290
lib/crystal/http/formdata/builder.cr
291
lib/crystal/http/formdata/parser.cr
292
lib/crystal/http/formdata/part.cr
293
lib/crystal/http/headers.cr
294
lib/crystal/http/multipart.cr
295
lib/crystal/http/multipart/builder.cr
296
lib/crystal/http/multipart/parser.cr
297
lib/crystal/http/params.cr
298
lib/crystal/http/request.cr
299
lib/crystal/http/server.cr
300
lib/crystal/http/server/context.cr
301
lib/crystal/http/server/handler.cr
302
lib/crystal/http/server/handlers/compress_handler.cr
303
lib/crystal/http/server/handlers/error_handler.cr
304
lib/crystal/http/server/handlers/log_handler.cr
305
lib/crystal/http/server/handlers/static_file_handler.cr
306
lib/crystal/http/server/handlers/static_file_handler.html
307
lib/crystal/http/server/handlers/websocket_handler.cr
308
lib/crystal/http/server/request_processor.cr
309
lib/crystal/http/server/response.cr
310
lib/crystal/http/web_socket.cr
311
lib/crystal/http/web_socket/protocol.cr
312
lib/crystal/iconv.cr
313
lib/crystal/indexable.cr
314
lib/crystal/ini.cr
315
lib/crystal/int.cr
316
lib/crystal/intrinsics.cr
317
lib/crystal/io.cr
318
lib/crystal/io/argf.cr
319
lib/crystal/io/buffered.cr
320
lib/crystal/io/byte_format.cr
321
lib/crystal/io/console.cr
322
lib/crystal/io/delimited.cr
323
lib/crystal/io/encoding.cr
324
lib/crystal/io/error.cr
325
lib/crystal/io/file_descriptor.cr
326
lib/crystal/io/hexdump.cr
327
lib/crystal/io/memory.cr
328
lib/crystal/io/multi_writer.cr
329
lib/crystal/io/sized.cr
330
lib/crystal/io/syscall.cr
331
lib/crystal/iterable.cr
332
lib/crystal/iterator.cr
333
lib/crystal/json.cr
334
lib/crystal/json/any.cr
335
lib/crystal/json/builder.cr
336
lib/crystal/json/from_json.cr
337
lib/crystal/json/lexer.cr
338
lib/crystal/json/lexer/io_based.cr
339
lib/crystal/json/lexer/string_based.cr
340
lib/crystal/json/mapping.cr
341
lib/crystal/json/parser.cr
342
lib/crystal/json/pull_parser.cr
343
lib/crystal/json/to_json.cr
344
lib/crystal/json/token.cr
345
lib/crystal/kernel.cr
346
lib/crystal/levenshtein.cr
347
lib/crystal/lib_c.cr
348
lib/crystal/lib_c/aarch64-linux-gnu/c/arpa/inet.cr
349
lib/crystal/lib_c/aarch64-linux-gnu/c/dirent.cr
350
lib/crystal/lib_c/aarch64-linux-gnu/c/dlfcn.cr
351
lib/crystal/lib_c/aarch64-linux-gnu/c/errno.cr
352
lib/crystal/lib_c/aarch64-linux-gnu/c/fcntl.cr
353
lib/crystal/lib_c/aarch64-linux-gnu/c/iconv.cr
354
lib/crystal/lib_c/aarch64-linux-gnu/c/netdb.cr
355
lib/crystal/lib_c/aarch64-linux-gnu/c/netinet/in.cr
356
lib/crystal/lib_c/aarch64-linux-gnu/c/netinet/tcp.cr
357
lib/crystal/lib_c/aarch64-linux-gnu/c/pthread.cr
358
lib/crystal/lib_c/aarch64-linux-gnu/c/signal.cr
359
lib/crystal/lib_c/aarch64-linux-gnu/c/stddef.cr
360
lib/crystal/lib_c/aarch64-linux-gnu/c/stdint.cr
361
lib/crystal/lib_c/aarch64-linux-gnu/c/stdio.cr
362
lib/crystal/lib_c/aarch64-linux-gnu/c/stdlib.cr
363
lib/crystal/lib_c/aarch64-linux-gnu/c/string.cr
364
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/mman.cr
365
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/select.cr
366
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/socket.cr
367
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/stat.cr
368
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/syscall.cr
369
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/time.cr
370
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/times.cr
371
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/types.cr
372
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/un.cr
373
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/wait.cr
374
lib/crystal/lib_c/aarch64-linux-gnu/c/termios.cr
375
lib/crystal/lib_c/aarch64-linux-gnu/c/time.cr
376
lib/crystal/lib_c/aarch64-linux-gnu/c/unistd.cr
377
lib/crystal/lib_c/amd64-unknown-openbsd/c/arpa/inet.cr
378
lib/crystal/lib_c/amd64-unknown-openbsd/c/dirent.cr
379
lib/crystal/lib_c/amd64-unknown-openbsd/c/dlfcn.cr
380
lib/crystal/lib_c/amd64-unknown-openbsd/c/errno.cr
381
lib/crystal/lib_c/amd64-unknown-openbsd/c/fcntl.cr
382
lib/crystal/lib_c/amd64-unknown-openbsd/c/iconv.cr
383
lib/crystal/lib_c/amd64-unknown-openbsd/c/netdb.cr
384
lib/crystal/lib_c/amd64-unknown-openbsd/c/netinet/in.cr
385
lib/crystal/lib_c/amd64-unknown-openbsd/c/netinet/tcp.cr
386
lib/crystal/lib_c/amd64-unknown-openbsd/c/pthread.cr
387
lib/crystal/lib_c/amd64-unknown-openbsd/c/signal.cr
388
lib/crystal/lib_c/amd64-unknown-openbsd/c/stddef.cr
389
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdint.cr
390
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdio.cr
391
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdlib.cr
392
lib/crystal/lib_c/amd64-unknown-openbsd/c/string.cr
393
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/mman.cr
394
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/select.cr
395
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/socket.cr
396
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/stat.cr
397
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/time.cr
398
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/times.cr
399
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/types.cr
400
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/un.cr
401
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/wait.cr
402
lib/crystal/lib_c/amd64-unknown-openbsd/c/sysctl.cr
403
lib/crystal/lib_c/amd64-unknown-openbsd/c/termios.cr
404
lib/crystal/lib_c/amd64-unknown-openbsd/c/time.cr
405
lib/crystal/lib_c/amd64-unknown-openbsd/c/unistd.cr
406
lib/crystal/lib_c/arm-linux-gnueabihf/c/arpa/inet.cr
407
lib/crystal/lib_c/arm-linux-gnueabihf/c/dirent.cr
408
lib/crystal/lib_c/arm-linux-gnueabihf/c/dlfcn.cr
409
lib/crystal/lib_c/arm-linux-gnueabihf/c/errno.cr
410
lib/crystal/lib_c/arm-linux-gnueabihf/c/fcntl.cr
411
lib/crystal/lib_c/arm-linux-gnueabihf/c/iconv.cr
412
lib/crystal/lib_c/arm-linux-gnueabihf/c/netdb.cr
413
lib/crystal/lib_c/arm-linux-gnueabihf/c/netinet/in.cr
414
lib/crystal/lib_c/arm-linux-gnueabihf/c/netinet/tcp.cr
415
lib/crystal/lib_c/arm-linux-gnueabihf/c/pthread.cr
416
lib/crystal/lib_c/arm-linux-gnueabihf/c/signal.cr
417
lib/crystal/lib_c/arm-linux-gnueabihf/c/stddef.cr
418
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdint.cr
419
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdio.cr
420
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdlib.cr
421
lib/crystal/lib_c/arm-linux-gnueabihf/c/string.cr
422
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/mman.cr
423
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/select.cr
424
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/socket.cr
425
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/stat.cr
426
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/syscall.cr
427
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/time.cr
428
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/times.cr
429
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/types.cr
430
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/un.cr
431
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/wait.cr
432
lib/crystal/lib_c/arm-linux-gnueabihf/c/termios.cr
433
lib/crystal/lib_c/arm-linux-gnueabihf/c/time.cr
434
lib/crystal/lib_c/arm-linux-gnueabihf/c/unistd.cr
435
lib/crystal/lib_c/i686-linux-gnu/c/arpa/inet.cr
436
lib/crystal/lib_c/i686-linux-gnu/c/dirent.cr
437
lib/crystal/lib_c/i686-linux-gnu/c/dlfcn.cr
438
lib/crystal/lib_c/i686-linux-gnu/c/errno.cr
439
lib/crystal/lib_c/i686-linux-gnu/c/fcntl.cr
440
lib/crystal/lib_c/i686-linux-gnu/c/iconv.cr
441
lib/crystal/lib_c/i686-linux-gnu/c/netdb.cr
442
lib/crystal/lib_c/i686-linux-gnu/c/netinet/in.cr
443
lib/crystal/lib_c/i686-linux-gnu/c/netinet/tcp.cr
444
lib/crystal/lib_c/i686-linux-gnu/c/pthread.cr
445
lib/crystal/lib_c/i686-linux-gnu/c/signal.cr
446
lib/crystal/lib_c/i686-linux-gnu/c/stddef.cr
447
lib/crystal/lib_c/i686-linux-gnu/c/stdint.cr
448
lib/crystal/lib_c/i686-linux-gnu/c/stdio.cr
449
lib/crystal/lib_c/i686-linux-gnu/c/stdlib.cr
450
lib/crystal/lib_c/i686-linux-gnu/c/string.cr
451
lib/crystal/lib_c/i686-linux-gnu/c/sys/mman.cr
452
lib/crystal/lib_c/i686-linux-gnu/c/sys/select.cr
453
lib/crystal/lib_c/i686-linux-gnu/c/sys/socket.cr
454
lib/crystal/lib_c/i686-linux-gnu/c/sys/stat.cr
455
lib/crystal/lib_c/i686-linux-gnu/c/sys/syscall.cr
456
lib/crystal/lib_c/i686-linux-gnu/c/sys/time.cr
457
lib/crystal/lib_c/i686-linux-gnu/c/sys/times.cr
458
lib/crystal/lib_c/i686-linux-gnu/c/sys/types.cr
459
lib/crystal/lib_c/i686-linux-gnu/c/sys/un.cr
460
lib/crystal/lib_c/i686-linux-gnu/c/sys/wait.cr
461
lib/crystal/lib_c/i686-linux-gnu/c/termios.cr
462
lib/crystal/lib_c/i686-linux-gnu/c/time.cr
463
lib/crystal/lib_c/i686-linux-gnu/c/unistd.cr
464
lib/crystal/lib_c/i686-linux-musl/c/arpa/inet.cr
465
lib/crystal/lib_c/i686-linux-musl/c/dirent.cr
466
lib/crystal/lib_c/i686-linux-musl/c/dlfcn.cr
467
lib/crystal/lib_c/i686-linux-musl/c/errno.cr
468
lib/crystal/lib_c/i686-linux-musl/c/fcntl.cr
469
lib/crystal/lib_c/i686-linux-musl/c/iconv.cr
470
lib/crystal/lib_c/i686-linux-musl/c/netdb.cr
471
lib/crystal/lib_c/i686-linux-musl/c/netinet/in.cr
472
lib/crystal/lib_c/i686-linux-musl/c/netinet/tcp.cr
473
lib/crystal/lib_c/i686-linux-musl/c/pthread.cr
474
lib/crystal/lib_c/i686-linux-musl/c/signal.cr
475
lib/crystal/lib_c/i686-linux-musl/c/stddef.cr
476
lib/crystal/lib_c/i686-linux-musl/c/stdint.cr
477
lib/crystal/lib_c/i686-linux-musl/c/stdio.cr
478
lib/crystal/lib_c/i686-linux-musl/c/stdlib.cr
479
lib/crystal/lib_c/i686-linux-musl/c/string.cr
480
lib/crystal/lib_c/i686-linux-musl/c/sys/mman.cr
481
lib/crystal/lib_c/i686-linux-musl/c/sys/select.cr
482
lib/crystal/lib_c/i686-linux-musl/c/sys/socket.cr
483
lib/crystal/lib_c/i686-linux-musl/c/sys/stat.cr
484
lib/crystal/lib_c/i686-linux-musl/c/sys/syscall.cr
485
lib/crystal/lib_c/i686-linux-musl/c/sys/time.cr
486
lib/crystal/lib_c/i686-linux-musl/c/sys/times.cr
487
lib/crystal/lib_c/i686-linux-musl/c/sys/types.cr
488
lib/crystal/lib_c/i686-linux-musl/c/sys/un.cr
489
lib/crystal/lib_c/i686-linux-musl/c/sys/wait.cr
490
lib/crystal/lib_c/i686-linux-musl/c/termios.cr
491
lib/crystal/lib_c/i686-linux-musl/c/time.cr
492
lib/crystal/lib_c/i686-linux-musl/c/unistd.cr
493
lib/crystal/lib_c/x86_64-linux-gnu/c/arpa/inet.cr
494
lib/crystal/lib_c/x86_64-linux-gnu/c/dirent.cr
495
lib/crystal/lib_c/x86_64-linux-gnu/c/dlfcn.cr
496
lib/crystal/lib_c/x86_64-linux-gnu/c/errno.cr
497
lib/crystal/lib_c/x86_64-linux-gnu/c/fcntl.cr
498
lib/crystal/lib_c/x86_64-linux-gnu/c/iconv.cr
499
lib/crystal/lib_c/x86_64-linux-gnu/c/netdb.cr
500
lib/crystal/lib_c/x86_64-linux-gnu/c/netinet/in.cr
501
lib/crystal/lib_c/x86_64-linux-gnu/c/netinet/tcp.cr
502
lib/crystal/lib_c/x86_64-linux-gnu/c/pthread.cr
503
lib/crystal/lib_c/x86_64-linux-gnu/c/signal.cr
504
lib/crystal/lib_c/x86_64-linux-gnu/c/stddef.cr
505
lib/crystal/lib_c/x86_64-linux-gnu/c/stdint.cr
506
lib/crystal/lib_c/x86_64-linux-gnu/c/stdio.cr
507
lib/crystal/lib_c/x86_64-linux-gnu/c/stdlib.cr
508
lib/crystal/lib_c/x86_64-linux-gnu/c/string.cr
509
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/mman.cr
510
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/select.cr
511
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/socket.cr
512
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/stat.cr
513
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/syscall.cr
514
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/time.cr
515
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/times.cr
516
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/types.cr
517
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/un.cr
518
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/wait.cr
519
lib/crystal/lib_c/x86_64-linux-gnu/c/termios.cr
520
lib/crystal/lib_c/x86_64-linux-gnu/c/time.cr
521
lib/crystal/lib_c/x86_64-linux-gnu/c/unistd.cr
522
lib/crystal/lib_c/x86_64-linux-musl/c/arpa/inet.cr
523
lib/crystal/lib_c/x86_64-linux-musl/c/dirent.cr
524
lib/crystal/lib_c/x86_64-linux-musl/c/dlfcn.cr
525
lib/crystal/lib_c/x86_64-linux-musl/c/errno.cr
526
lib/crystal/lib_c/x86_64-linux-musl/c/fcntl.cr
527
lib/crystal/lib_c/x86_64-linux-musl/c/iconv.cr
528
lib/crystal/lib_c/x86_64-linux-musl/c/netdb.cr
529
lib/crystal/lib_c/x86_64-linux-musl/c/netinet/in.cr
530
lib/crystal/lib_c/x86_64-linux-musl/c/netinet/tcp.cr
531
lib/crystal/lib_c/x86_64-linux-musl/c/pthread.cr
532
lib/crystal/lib_c/x86_64-linux-musl/c/signal.cr
533
lib/crystal/lib_c/x86_64-linux-musl/c/stddef.cr
534
lib/crystal/lib_c/x86_64-linux-musl/c/stdint.cr
535
lib/crystal/lib_c/x86_64-linux-musl/c/stdio.cr
536
lib/crystal/lib_c/x86_64-linux-musl/c/stdlib.cr
537
lib/crystal/lib_c/x86_64-linux-musl/c/string.cr
538
lib/crystal/lib_c/x86_64-linux-musl/c/sys/mman.cr
539
lib/crystal/lib_c/x86_64-linux-musl/c/sys/select.cr
540
lib/crystal/lib_c/x86_64-linux-musl/c/sys/socket.cr
541
lib/crystal/lib_c/x86_64-linux-musl/c/sys/stat.cr
542
lib/crystal/lib_c/x86_64-linux-musl/c/sys/syscall.cr
543
lib/crystal/lib_c/x86_64-linux-musl/c/sys/time.cr
544
lib/crystal/lib_c/x86_64-linux-musl/c/sys/times.cr
545
lib/crystal/lib_c/x86_64-linux-musl/c/sys/types.cr
546
lib/crystal/lib_c/x86_64-linux-musl/c/sys/un.cr
547
lib/crystal/lib_c/x86_64-linux-musl/c/sys/wait.cr
548
lib/crystal/lib_c/x86_64-linux-musl/c/termios.cr
549
lib/crystal/lib_c/x86_64-linux-musl/c/time.cr
550
lib/crystal/lib_c/x86_64-linux-musl/c/unistd.cr
551
lib/crystal/lib_c/x86_64-macosx-darwin/c/arpa/inet.cr
552
lib/crystal/lib_c/x86_64-macosx-darwin/c/dirent.cr
553
lib/crystal/lib_c/x86_64-macosx-darwin/c/dlfcn.cr
554
lib/crystal/lib_c/x86_64-macosx-darwin/c/errno.cr
555
lib/crystal/lib_c/x86_64-macosx-darwin/c/fcntl.cr
556
lib/crystal/lib_c/x86_64-macosx-darwin/c/iconv.cr
557
lib/crystal/lib_c/x86_64-macosx-darwin/c/mach/mach_time.cr
558
lib/crystal/lib_c/x86_64-macosx-darwin/c/netdb.cr
559
lib/crystal/lib_c/x86_64-macosx-darwin/c/netinet/in.cr
560
lib/crystal/lib_c/x86_64-macosx-darwin/c/netinet/tcp.cr
561
lib/crystal/lib_c/x86_64-macosx-darwin/c/pthread.cr
562
lib/crystal/lib_c/x86_64-macosx-darwin/c/signal.cr
563
lib/crystal/lib_c/x86_64-macosx-darwin/c/stddef.cr
564
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdint.cr
565
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdio.cr
566
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdlib.cr
567
lib/crystal/lib_c/x86_64-macosx-darwin/c/string.cr
568
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/mman.cr
569
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/select.cr
570
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/socket.cr
571
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/stat.cr
572
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/time.cr
573
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/times.cr
574
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/types.cr
575
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/un.cr
576
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/wait.cr
577
lib/crystal/lib_c/x86_64-macosx-darwin/c/termios.cr
578
lib/crystal/lib_c/x86_64-macosx-darwin/c/time.cr
579
lib/crystal/lib_c/x86_64-macosx-darwin/c/unistd.cr
580
lib/crystal/lib_c/x86_64-portbld-freebsd/c/arpa/inet.cr
581
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dirent.cr
582
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dirent.cr.orig
583
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dlfcn.cr
584
lib/crystal/lib_c/x86_64-portbld-freebsd/c/errno.cr
585
lib/crystal/lib_c/x86_64-portbld-freebsd/c/fcntl.cr
586
lib/crystal/lib_c/x86_64-portbld-freebsd/c/iconv.cr
587
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netdb.cr
588
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netinet/in.cr
589
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netinet/tcp.cr
590
lib/crystal/lib_c/x86_64-portbld-freebsd/c/pthread.cr
591
lib/crystal/lib_c/x86_64-portbld-freebsd/c/signal.cr
592
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stddef.cr
593
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdint.cr
594
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdio.cr
595
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdlib.cr
596
lib/crystal/lib_c/x86_64-portbld-freebsd/c/string.cr
597
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/mman.cr
598
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/select.cr
599
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/socket.cr
600
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr
601
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr.orig
602
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/time.cr
603
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/times.cr
604
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/types.cr
605
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/types.cr.orig
606
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/un.cr
607
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/wait.cr
608
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sysctl.cr
609
lib/crystal/lib_c/x86_64-portbld-freebsd/c/termios.cr
610
lib/crystal/lib_c/x86_64-portbld-freebsd/c/time.cr
611
lib/crystal/lib_c/x86_64-portbld-freebsd/c/unistd.cr
612
lib/crystal/lib_c/x86_64-unknown-freebsd
613
lib/crystal/lib_c/x86_64-windows-msvc/c/errno.cr
614
lib/crystal/lib_c/x86_64-windows-msvc/c/winapi.cr
615
lib/crystal/lib_z/lib_z.cr
616
lib/crystal/llvm.cr
617
lib/crystal/llvm/abi.cr
618
lib/crystal/llvm/abi/aarch64.cr
619
lib/crystal/llvm/abi/arm.cr
620
lib/crystal/llvm/abi/x86.cr
621
lib/crystal/llvm/abi/x86_64.cr
622
lib/crystal/llvm/basic_block.cr
623
lib/crystal/llvm/basic_block_collection.cr
624
lib/crystal/llvm/builder.cr
625
lib/crystal/llvm/context.cr
626
lib/crystal/llvm/di_builder.cr
627
lib/crystal/llvm/enums.cr
628
lib/crystal/llvm/ext/llvm_ext.cc
629
lib/crystal/llvm/ext/llvm_ext.o
630
lib/crystal/llvm/function.cr
631
lib/crystal/llvm/function_collection.cr
632
lib/crystal/llvm/function_pass_manager.cr
633
lib/crystal/llvm/generic_value.cr
634
lib/crystal/llvm/global_collection.cr
635
lib/crystal/llvm/instruction_collection.cr
636
lib/crystal/llvm/jit_compiler.cr
637
lib/crystal/llvm/lib_llvm.cr
638
lib/crystal/llvm/lib_llvm_ext.cr
639
lib/crystal/llvm/memory_buffer.cr
640
lib/crystal/llvm/module.cr
641
lib/crystal/llvm/module_pass_manager.cr
642
lib/crystal/llvm/operand_bundle_def.cr
643
lib/crystal/llvm/parameter_collection.cr
644
lib/crystal/llvm/pass_manager_builder.cr
645
lib/crystal/llvm/pass_registry.cr
646
lib/crystal/llvm/phi_table.cr
647
lib/crystal/llvm/target.cr
648
lib/crystal/llvm/target_data.cr
649
lib/crystal/llvm/target_machine.cr
650
lib/crystal/llvm/type.cr
651
lib/crystal/llvm/value.cr
652
lib/crystal/llvm/value_methods.cr
653
lib/crystal/logger.cr
654
lib/crystal/macros.cr
655
lib/crystal/markdown.cr
656
lib/crystal/markdown/html_renderer.cr
657
lib/crystal/markdown/parser.cr
658
lib/crystal/markdown/renderer.cr
659
lib/crystal/math/libm.cr
660
lib/crystal/math/math.cr
661
lib/crystal/mutex.cr
662
lib/crystal/named_tuple.cr
663
lib/crystal/nil.cr
664
lib/crystal/number.cr
665
lib/crystal/oauth.cr
666
lib/crystal/oauth/access_token.cr
667
lib/crystal/oauth/authorization_header.cr
668
lib/crystal/oauth/consumer.cr
669
lib/crystal/oauth/error.cr
670
lib/crystal/oauth/oauth.cr
671
lib/crystal/oauth/params.cr
672
lib/crystal/oauth/request_token.cr
673
lib/crystal/oauth/signature.cr
674
lib/crystal/oauth2.cr
675
lib/crystal/oauth2/access_token/access_token.cr
676
lib/crystal/oauth2/access_token/bearer.cr
677
lib/crystal/oauth2/access_token/mac.cr
678
lib/crystal/oauth2/client.cr
679
lib/crystal/oauth2/error.cr
680
lib/crystal/oauth2/oauth2.cr
681
lib/crystal/oauth2/session.cr
682
lib/crystal/object.cr
683
lib/crystal/openssl.cr
684
lib/crystal/openssl/bio.cr
685
lib/crystal/openssl/cipher.cr
686
lib/crystal/openssl/digest/digest.cr
687
lib/crystal/openssl/digest/digest_base.cr
688
lib/crystal/openssl/digest/digest_io.cr
689
lib/crystal/openssl/hmac.cr
690
lib/crystal/openssl/lib_crypto.cr
691
lib/crystal/openssl/lib_ssl.cr
692
lib/crystal/openssl/md5.cr
693
lib/crystal/openssl/pkcs5.cr
694
lib/crystal/openssl/sha1.cr
695
lib/crystal/openssl/ssl/context.cr
696
lib/crystal/openssl/ssl/hostname_validation.cr
697
lib/crystal/openssl/ssl/socket.cr
698
lib/crystal/openssl/x509/certificate.cr
699
lib/crystal/openssl/x509/extension.cr
700
lib/crystal/openssl/x509/name.cr
701
lib/crystal/openssl/x509/x509.cr
702
lib/crystal/option_parser.cr
703
lib/crystal/partial_comparable.cr
704
lib/crystal/pointer.cr
705
lib/crystal/prelude.cr
706
lib/crystal/pretty_print.cr
707
lib/crystal/primitives.cr
708
lib/crystal/proc.cr
709
lib/crystal/process.cr
710
lib/crystal/process/executable_path.cr
711
lib/crystal/process/status.cr
712
lib/crystal/raise.cr
713
lib/crystal/random.cr
714
lib/crystal/random/isaac.cr
715
lib/crystal/random/pcg32.cr
716
lib/crystal/random/secure.cr
717
lib/crystal/range.cr
718
lib/crystal/range/bsearch.cr
719
lib/crystal/readline.cr
720
lib/crystal/reference.cr
721
lib/crystal/reflect.cr
722
lib/crystal/regex.cr
723
lib/crystal/regex/lib_pcre.cr
724
lib/crystal/regex/match_data.cr
725
lib/crystal/semantic_version.cr
726
lib/crystal/set.cr
727
lib/crystal/signal.cr
728
lib/crystal/slice.cr
729
lib/crystal/socket.cr
730
lib/crystal/socket/address.cr
731
lib/crystal/socket/addrinfo.cr
732
lib/crystal/socket/ip_socket.cr
733
lib/crystal/socket/server.cr
734
lib/crystal/socket/tcp_server.cr
735
lib/crystal/socket/tcp_socket.cr
736
lib/crystal/socket/udp_socket.cr
737
lib/crystal/socket/unix_server.cr
738
lib/crystal/socket/unix_socket.cr
739
lib/crystal/spec.cr
740
lib/crystal/spec/context.cr
741
lib/crystal/spec/dsl.cr
742
lib/crystal/spec/expectations.cr
743
lib/crystal/spec/formatter.cr
744
lib/crystal/spec/junit_formatter.cr
745
lib/crystal/spec/methods.cr
746
lib/crystal/spec/source.cr
747
lib/crystal/static_array.cr
748
lib/crystal/string.cr
749
lib/crystal/string/builder.cr
750
lib/crystal/string/formatter.cr
751
lib/crystal/string_pool.cr
752
lib/crystal/string_scanner.cr
753
lib/crystal/struct.cr
754
lib/crystal/symbol.cr
755
lib/crystal/system.cr
756
lib/crystal/tempfile.cr
757
lib/crystal/termios.cr
758
lib/crystal/thread.cr
759
lib/crystal/thread/condition_variable.cr
760
lib/crystal/thread/mutex.cr
761
lib/crystal/time.cr
762
lib/crystal/time/format.cr
763
lib/crystal/time/format/formatter.cr
764
lib/crystal/time/format/parser.cr
765
lib/crystal/time/format/pattern.cr
766
lib/crystal/time/span.cr
767
lib/crystal/tuple.cr
768
lib/crystal/unicode/data.cr
769
lib/crystal/unicode/unicode.cr
770
lib/crystal/union.cr
771
lib/crystal/uri.cr
772
lib/crystal/uri/uri_parser.cr
773
lib/crystal/value.cr
774
lib/crystal/weak_ref.cr
775
lib/crystal/winerror.cr
776
lib/crystal/xml.cr
777
lib/crystal/xml/attribute_type.cr
778
lib/crystal/xml/attributes.cr
779
lib/crystal/xml/builder.cr
780
lib/crystal/xml/error.cr
781
lib/crystal/xml/html_parser_options.cr
782
lib/crystal/xml/libxml2.cr
783
lib/crystal/xml/namespace.cr
784
lib/crystal/xml/node.cr
785
lib/crystal/xml/node_set.cr
786
lib/crystal/xml/parser_options.cr
787
lib/crystal/xml/reader.cr
788
lib/crystal/xml/save_options.cr
789
lib/crystal/xml/type.cr
790
lib/crystal/xml/xpath_context.cr
791
lib/crystal/yaml.cr
792
lib/crystal/yaml/any.cr
793
lib/crystal/yaml/builder.cr
794
lib/crystal/yaml/enums.cr
795
lib/crystal/yaml/from_yaml.cr
796
lib/crystal/yaml/lib_yaml.cr
797
lib/crystal/yaml/mapping.cr
798
lib/crystal/yaml/nodes.cr
799
lib/crystal/yaml/nodes/builder.cr
800
lib/crystal/yaml/nodes/nodes.cr
801
lib/crystal/yaml/nodes/parser.cr
802
lib/crystal/yaml/parse_context.cr
803
lib/crystal/yaml/parser.cr
804
lib/crystal/yaml/pull_parser.cr
805
lib/crystal/yaml/schema/core.cr
806
lib/crystal/yaml/schema/core/parser.cr
807
lib/crystal/yaml/schema/core/time_parser.cr
808
lib/crystal/yaml/schema/fail_safe.cr
809
lib/crystal/yaml/to_yaml.cr
810
lib/crystal/zip/checksum_reader.cr
811
lib/crystal/zip/checksum_writer.cr
812
lib/crystal/zip/compression_method.cr
813
lib/crystal/zip/file.cr
814
lib/crystal/zip/file_info.cr
815
lib/crystal/zip/reader.cr
816
lib/crystal/zip/writer.cr
817
lib/crystal/zip/zip.cr
818
lib/crystal/zlib/reader.cr
819
lib/crystal/zlib/writer.cr
820
lib/crystal/zlib/zlib.cr
821
man/man1/crystal.1.gz
822
%%ZSH%%share/zsh/site-functions/_crystal

Return to bug 224459