Sha256: 8dd9030fea7c0bb0af04f5a7f24e26a8b3594f59754ba7fc376a39022a3b9182

Contents?: true

Size: 714 Bytes

Versions: 25

Compression:

Stored size: 714 Bytes

Contents

#!/usr/bin/env ruby
#
# mrbgems test runner
#

if __FILE__ == $0
  repository, dir = 'https://github.com/mruby/mruby.git', 'tmp/mruby'
  build_args = ARGV

  Dir.mkdir 'tmp'  unless File.exist?('tmp')
  unless File.exist?(dir)
    system "git clone #{repository} #{dir}"
  end

  exit system(%Q[cd #{dir}; MRUBY_CONFIG=#{File.expand_path __FILE__} ruby minirake #{build_args.join(' ')}])
end

MRuby::Build.new do |conf|
  toolchain :gcc
  conf.gembox 'default'

  conf.gem :git => 'https://github.com/iij/mruby-mtest.git'
  conf.gem :git => 'https://github.com/iij/mruby-io.git'
  conf.gem :git => 'https://github.com/iij/mruby-pack.git'

  conf.gem File.expand_path(File.dirname(__FILE__))
  conf.enable_test
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
esruby-0.0.0 resources/mruby/mrbgems/mruby-socket/run_test.rb
script_core-0.0.4 ext/enterprise_script_service/mruby/mrbgems/mruby-socket/run_test.rb
script_core-0.0.3 ext/enterprise_script_service/mruby/mrbgems/mruby-socket/run_test.rb
script_core-0.0.2 ext/enterprise_script_service/mruby/mrbgems/mruby-socket/run_test.rb
script_core-0.0.1 ext/enterprise_script_service/mruby/mrbgems/mruby-socket/run_test.rb