2018-01-12 03:38:09 -05:00
|
|
|
#! /your/favourite/path/to/ruby
|
|
|
|
# -*- mode: ruby; coding: utf-8; indent-tabs-mode: nil; ruby-indent-level: 2 -*-
|
|
|
|
# -*- frozen_string_literal: true; -*-
|
|
|
|
# -*- warn_indent: true; -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Urabe, Shyouhei. All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is a part of the programming language Ruby. Permission is hereby
|
|
|
|
# granted, to either redistribute and/or modify this file, provided that the
|
|
|
|
# conditions mentioned in the file COPYING are met. Consult the file for
|
|
|
|
# details.
|
|
|
|
|
|
|
|
require_relative '../helpers/dumper'
|
|
|
|
require_relative '../models/instructions'
|
|
|
|
require_relative '../models/typemap'
|
|
|
|
require_relative '../loaders/vm_opts_h'
|
|
|
|
|
|
|
|
class ApplicationController
|
2018-01-26 20:59:08 -05:00
|
|
|
def generate i, destdir
|
2018-01-12 03:38:09 -05:00
|
|
|
path = Pathname.new i
|
2018-10-18 19:58:21 -04:00
|
|
|
dst = destdir ? Pathname.new(destdir).join(i) : Pathname.new(i)
|
2018-01-26 20:59:08 -05:00
|
|
|
dumper = RubyVM::Dumper.new dst
|
2018-01-12 03:38:09 -05:00
|
|
|
return [path, dumper]
|
|
|
|
end
|
|
|
|
end
|