summaryrefslogtreecommitdiffhomepage
path: root/examples/mrbgems/c_extension_example
diff options
context:
space:
mode:
authorCarson McDonald <[email protected]>2013-01-30 05:36:03 -0500
committerCarson McDonald <[email protected]>2013-01-30 05:36:03 -0500
commitc1ca6621700fcc486daed1209d0a9b0440a985bf (patch)
tree4531a86aeed6ecb31fa261cabf61a5b1ee7d4f3e /examples/mrbgems/c_extension_example
parent33081f52ab7f3363f5811ae4101ee81fbf0e86fd (diff)
downloadmruby-c1ca6621700fcc486daed1209d0a9b0440a985bf.tar.gz
mruby-c1ca6621700fcc486daed1209d0a9b0440a985bf.zip
Changed variable $test_args to constant TEST_ARGS
Diffstat (limited to 'examples/mrbgems/c_extension_example')
-rw-r--r--examples/mrbgems/c_extension_example/mrbgem.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mrbgems/c_extension_example/mrbgem.rake b/examples/mrbgems/c_extension_example/mrbgem.rake
index f56564222..8c132b233 100644
--- a/examples/mrbgems/c_extension_example/mrbgem.rake
+++ b/examples/mrbgems/c_extension_example/mrbgem.rake
@@ -18,6 +18,6 @@ MRuby::Gem::Specification.new('c_extension_example') do |spec|
# spec.test_objs = Dir.glob("#{dir}/test/*.{c,cpp,m,asm,S}").map { |f| objfile(f.relative_path_from(dir).pathmap("#{build_dir}/%X")) }
# spec.test_preload = 'test/assert.rb'
- # Values accessible as $test_args inside test scripts
+ # Values accessible as TEST_ARGS inside test scripts
# spec.test_args = {'tmp_dir' => Dir::tmpdir}
end