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

require 'thor'