diff options
| author | mattn <[email protected]> | 2013-03-25 21:20:04 +0900 |
|---|---|---|
| committer | mattn <[email protected]> | 2013-03-25 21:20:04 +0900 |
| commit | d9bee07c4968634ee7b4ceb5f8dc1a4fe49ce32a (patch) | |
| tree | b8c63acdff324c7862b9e881f5014450d11238e1 | |
| parent | bd8a7ec67ac64bb376c42ace008ec7d860be6311 (diff) | |
| download | mruby-d9bee07c4968634ee7b4ceb5f8dc1a4fe49ce32a.tar.gz mruby-d9bee07c4968634ee7b4ceb5f8dc1a4fe49ce32a.zip | |
mruby-sprintf should precede mruby-print
| -rw-r--r-- | build_config.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_config.rb b/build_config.rb index 951f4b7a3..66c64ab80 100644 --- a/build_config.rb +++ b/build_config.rb @@ -11,6 +11,9 @@ MRuby::Build.new do |conf| # conf.gem :github => 'masuidrive/mrbgems-example', :branch => 'master' # conf.gem :git => '[email protected]:masuidrive/mrbgems-example.git', :branch => 'master', :options => '-v' + # Use standard Kernel#sprintf method + conf.gem "#{root}/mrbgems/mruby-sprintf" + # Use standard print/puts/p conf.gem "#{root}/mrbgems/mruby-print" @@ -23,9 +26,6 @@ MRuby::Build.new do |conf| # Use standard Struct class conf.gem "#{root}/mrbgems/mruby-struct" - # Use standard Kernel#sprintf method - conf.gem "#{root}/mrbgems/mruby-sprintf" - # Use extensional Enumerable module conf.gem "#{root}/mrbgems/mruby-enum-ext" |
