mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Move vpath.rb into tool library direcotry.
This commit is contained in:
parent
bd494ae79b
commit
badfbdf32c
4 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!ruby
|
#!ruby
|
||||||
|
|
||||||
require_relative 'vpath'
|
require_relative 'lib/vpath'
|
||||||
|
|
||||||
class Checksum
|
class Checksum
|
||||||
def initialize(vpath)
|
def initialize(vpath)
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
require 'erb'
|
require 'erb'
|
||||||
require 'optparse'
|
require 'optparse'
|
||||||
$:.unshift(File.dirname(__FILE__))
|
$:.unshift(File.dirname(__FILE__))
|
||||||
require 'vpath'
|
require_relative 'lib/vpath'
|
||||||
require_relative 'lib/colorize'
|
require_relative 'lib/colorize'
|
||||||
|
|
||||||
vpath = VPath.new
|
vpath = VPath.new
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
BEGIN {
|
BEGIN {
|
||||||
require 'optparse'
|
require 'optparse'
|
||||||
$:.unshift(File.dirname(__FILE__))
|
$:.unshift(File.dirname(__FILE__))
|
||||||
require 'vpath'
|
require_relative 'lib/vpath'
|
||||||
vpath = VPath.new
|
vpath = VPath.new
|
||||||
header = nil
|
header = nil
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue