1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Put vcs .rb to under the lib direcotory.

Because it's the common library for tool files.
This commit is contained in:
Hiroshi SHIBATA 2019-07-15 08:34:24 +09:00
parent 8f7884761e
commit 0a711b0edf
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
3 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ require 'optparse'
# this file run with BASERUBY, which may be older than 1.9, so no
# require_relative
require File.expand_path('../vcs', __FILE__)
require File.expand_path('../lib/vcs', __FILE__)
Program = $0

View file

@ -7,7 +7,7 @@ require 'fileutils'
require 'shellwords'
require 'tmpdir'
require 'pathname'
require File.expand_path("../vcs", __FILE__)
require File.expand_path("../lib/vcs", __FILE__)
require File.expand_path("../colorize", __FILE__)
STDOUT.sync = true