diff options
| author | Davide D'Agostino <[email protected]> | 2012-12-20 23:16:31 -0800 |
|---|---|---|
| committer | Davide D'Agostino <[email protected]> | 2012-12-20 23:16:31 -0800 |
| commit | bd7cf2f251509ef184e707a766a111c4ea057335 (patch) | |
| tree | dcdcfcbcaed71901d2c8b20c84ff9650e3f3e54a /Rakefile | |
| parent | d34c4c45f5761467fe2d9cb1dfe92a1c0612a8e8 (diff) | |
| download | mruby-bd7cf2f251509ef184e707a766a111c4ea057335.tar.gz mruby-bd7cf2f251509ef184e707a766a111c4ea057335.zip | |
Allow ACTIVE_GEMS to be changed from ENV
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ MRUBY_ROOT = ENV['MRUBY_ROOT'] || File.expand_path(File.dirname(__FILE__)) ENABLE_GEMS = ENV['ENABLE_GEMS'] == 'true' # the default file which contains the active GEMs -ACTIVE_GEMS = File.join(File.dirname(__FILE__), 'mrbgems', 'GEMS.active') +ACTIVE_GEMS = ENV['ACTIVE_GEMS'] || File.expand_path('../mrbgems/GEMS.active', __FILE__) # default compile option COMPILE_MODE = ENV['COMPILE_MODE'] || :debug |
