-
Notifications
You must be signed in to change notification settings - Fork 13
/
ruboto.yml
62 lines (58 loc) · 1.24 KB
/
ruboto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
###################################
#
# heap_alloc
#
# Forces the heap to grow by a number of megabytes.
# Can result in improved start-up performance because
# it prevents the heap from growing through smaller
# increments.
#
# heap_alloc: 13
###################################
#
# ruby_version
#
# Sets the jruby.compat.version property of JRuby
# If you include the jruby jars, this is used to
# trim away unused versions of the stdlib.
#
# ruby_version: 1.9
###################################
#
# included_stdlibs
#
# Specify parts of the stdlib that are needed.
# If you specify a list, all other components
# will be removed. If you specify "auto,"
# dependencies will be determined from
# auto_dependencies.yml. Running
# "rake libs:check_dependencies' will build
# auto_dependencies.yml.
#
# included_stdlibs: auto
#
# included_stdlibs:
# - fileutils
###################################
#
# excluded_stdlibs
#
# Remove unneeded files from stdlib.
# Note: If you specify included_stdlibs above,
# this information will be ingnored.
#
#excluded_stdlibs:
#- ant
#- cgi
#- drb
#- erb
#- gauntlet_rdoc
#- minitest
#- profiler
#- rake
#- rdoc
#- shell
#- test
#- webrick
#- win32
#- Win32API