summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-12-19 18:30:27 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-12-19 18:30:27 -0800
commit0955f25a964cdd72272bbda5d00d2cccf6983f8e (patch)
treebf661e0059032a0d064e2339b34806ab57e3267e
parent4b19fd915267f6ebae576c80cf8ef02514089e11 (diff)
parentac79bd58860d81b728760050bbfa347cfd7facfd (diff)
downloadmruby-0955f25a964cdd72272bbda5d00d2cccf6983f8e.tar.gz
mruby-0955f25a964cdd72272bbda5d00d2cccf6983f8e.zip
Merge pull request #652 from mattn/env_enable_gems
possible to specify ENABLE_GEMS=true.
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index a1c2e9441..5986f2fc4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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')