aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/vendor/thor.rb
blob: a98799ce08c506b71ad8c6b41cd4bade11036828 (plain) (blame)
1
2
3
4
5
6
7
8
9
begin
  # Prefer gems to the bundled libs.
  require 'rubygems'
  gem 'thor', '>= 0.11.0'
rescue Gem::LoadError
  $:.unshift "#{File.dirname(__FILE__)}/thor/lib"
end

require 'thor'