diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-19 18:30:27 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-19 18:30:27 -0800 |
| commit | 0955f25a964cdd72272bbda5d00d2cccf6983f8e (patch) | |
| tree | bf661e0059032a0d064e2339b34806ab57e3267e | |
| parent | 4b19fd915267f6ebae576c80cf8ef02514089e11 (diff) | |
| parent | ac79bd58860d81b728760050bbfa347cfd7facfd (diff) | |
| download | mruby-0955f25a964cdd72272bbda5d00d2cccf6983f8e.tar.gz mruby-0955f25a964cdd72272bbda5d00d2cccf6983f8e.zip | |
Merge pull request #652 from mattn/env_enable_gems
possible to specify ENABLE_GEMS=true.
| -rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ MAKE = ENV['MAKE'] || 'make' MRUBY_ROOT = ENV['MRUBY_ROOT'] || File.expand_path(File.dirname(__FILE__)) # by default GEMs are deactivated -ENABLE_GEMS = false +ENABLE_GEMS = ENV['ENABLE_GEMS'] == 'true' # the default file which contains the active GEMs ACTIVE_GEMS = File.join(File.dirname(__FILE__), 'mrbgems', 'GEMS.active') |
