#! /your/favourite/path/to/ruby # -*- Ruby -*- # -*- 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 def generate i, destdir path = Pathname.new i dst = destdir ? Pathname.new(destdir).join(i) : Pathname.new(i) dumper = RubyVM::Dumper.new dst return [path, dumper] end end alue='ruby_1_8'>ruby_1_8 The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/node
AgeCommit message (Expand)Author
2021-11-29Update to ruby/spec@7f22a0bBenoit Daloze
2020-09-152.8 -> 3.0 in specsBenoit Daloze
2020-05-03Update to ruby/spec@032ee74Benoit Daloze
2020-01-12Ignore rexml examples on ruby/specHiroshi SHIBATA
2018-06-27Update to ruby/spec@a454137eregon
2018-03-04Update to ruby/spec@c1b568beregon
2017-09-20Move spec/rubyspec to spec/ruby for consistencyeregon