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

require 'thor'