Sha256: 2511c80ae9673b6f2e53d4c675cf480ee08cc0d3fef5588c43360ab6fc6fbeb3

Contents?: true

Size: 499 Bytes

Versions: 12

Compression:

Stored size: 499 Bytes

Contents

#!/usr/bin/env ruby

require 'optparse'

ARGV.options do |opts|
  opts.banner = "Usage: #{File.basename($0)} 'puts Person[1].name' [options]"
  opts.separator '' 
  opts.on('-h', '--help', 'Show this help message.') { puts opts; exit }
  opts.parse!
end

code = ARGV.shift

$NITRO_NO_INVOKE = true
$:.unshift File.join(File.dirname(__FILE__), '..')
$:.unshift '/home/gmosx/public/glue/lib', '/home/gmosx/public/og/lib', '/home/gmosx/public/nitro/lib'
require 'rubygems'
require 'run.rb'

eval(code)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
nitro-0.41.0 proto/script/runner
nitro-0.22.0 proto/script/runner
nitro-0.23.0 proto/script/runner
nitro-0.24.0 proto/script/runner
nitro-0.25.0 proto/script/runner
nitro-0.26.0 proto/script/runner
nitro-0.27.0 proto/script/runner
nitro-0.28.0 proto/script/runner
nitro-0.29.0 proto/script/runner
nitro-0.30.0 proto/script/runner
nitro-0.40.0 proto/script/runner
nitro-0.31.0 proto/script/runner