aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/vendor/thor.rb
blob: a5383529c10f3299d75088b40fe69a859d98b739 (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-0.11.0/lib"
end

require 'thor'