9 lines
274 B
Ruby
9 lines
274 B
Ruby
|
if defined?(Thor)
|
||
|
Bundler.ui.warn "Thor has already been required. " +
|
||
|
"This may cause Bundler to malfunction in unexpected ways."
|
||
|
end
|
||
|
vendor = File.expand_path('../vendor', __FILE__)
|
||
|
$:.unshift(vendor) unless $:.include?(vendor)
|
||
|
require 'thor'
|
||
|
require 'thor/actions'
|