blob: 6931b10d65aeda28b4536c865a6a05c7024b4361 (
plain)
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
62
|
MRuby::GemBox.new do |conf|
# -- CORE GEMS --
conf.gembox "stdlib"
conf.gembox "stdlib-ext"
conf.gembox "math"
conf.gembox "metaprog"
#conf.gembox "stdlib-io"
# Use standard IO/File class
conf.gem :core => "mruby-io"
# TODO: this gem doesnt current work
# with windows export
# Use standard IO/File class
#conf.gem :core => "mruby-socket"
# Use standard print/puts/p
conf.gem :core => "mruby-print"
# Generate mrbc command
conf.gem :core => "mruby-bin-mrbc"
# Generate mirb command
conf.gem :core => "mruby-bin-mirb"
# Generate mruby command
conf.gem :core => "mruby-bin-mruby"
# Generate mruby-strip command
conf.gem :core => "mruby-bin-strip"
# Generate mruby-config command
conf.gem :core => "mruby-bin-config"
# -- OTHER GEMS --
# Test gem
conf.gem :git => '[email protected]:realtradam/sample-mruby-gem.git', :branch => 'test', :options => '-v'
# -- POTENTIAL GEMS --
# gems that we may want incorperated
# Simple Http
#conf.gem :git => 'https://github.com/matsumotory/mruby-simplehttp'
# Memory Profiler
#conf.gem :git => 'https://github.com/iij/mruby-memprof'
# Testing Framework
#conf.gem :git => 'https://github.com/iij/mruby-mtest'
# Regex
#conf.gem :git => 'https://github.com/iij/mruby-regexp-pcre'
# JSON
#conf.gem :git => 'https://github.com/iij/mruby-iijson'
# Dir
#conf.gem :git => 'https://github.com/iij/mruby-dir'
end
|