aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/vendored_thor.rb
blob: a6434268ed8901685f68674dfeda7bdd94b5b8f9 (plain)
1
2
3
4
5
6
7
8
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'