mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
68222eb417
inconsistent with -Ks commandline option in common.mk. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
305 B
Ruby
Executable file
15 lines
305 B
Ruby
Executable file
#!ruby
|
|
|
|
require 'optparse'
|
|
|
|
Version = %w$Revision: 11626 $[1..-1]
|
|
|
|
require "#{File.join(File.dirname(__FILE__), 'instruction')}"
|
|
|
|
if $0 == __FILE__
|
|
opts = ARGV.options
|
|
maker = RubyVM::SourceCodeGenerator.def_options(opts)
|
|
files = opts.parse!
|
|
generator = maker.call
|
|
generator.generate(files)
|
|
end
|