root/tags/rel_1-2-1/railties/lib/rails_generator.rb
| Revision 838, 1.7 kB (checked in by david, 4 years ago) |
|---|
| Line | |
|---|---|
| 1 | #-- |
| 2 | # Copyright (c) 2004 Jeremy Kemper |
| 3 | # |
| 4 | # Permission is hereby granted, free of charge, to any person obtaining |
| 5 | # a copy of this software and associated documentation files (the |
| 6 | # "Software"), to deal in the Software without restriction, including |
| 7 | # without limitation the rights to use, copy, modify, merge, publish, |
| 8 | # distribute, sublicense, and/or sell copies of the Software, and to |
| 9 | # permit persons to whom the Software is furnished to do so, subject to |
| 10 | # the following conditions: |
| 11 | # |
| 12 | # The above copyright notice and this permission notice shall be |
| 13 | # included in all copies or substantial portions of the Software. |
| 14 | # |
| 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 16 | # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 17 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 18 | # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 19 | # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 20 | # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 21 | # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 22 | #++ |
| 23 | |
| 24 | $:.unshift(File.dirname(__FILE__)) |
| 25 | $:.unshift(File.dirname(__FILE__) + "/../../activesupport/lib") |
| 26 | |
| 27 | begin |
| 28 | require 'active_support' |
| 29 | rescue LoadError |
| 30 | require 'rubygems' |
| 31 | require_gem 'activesupport' |
| 32 | end |
| 33 | |
| 34 | require 'rails_generator/base' |
| 35 | require 'rails_generator/lookup' |
| 36 | require 'rails_generator/commands' |
| 37 | |
| 38 | Rails::Generator::Base.send(:include, Rails::Generator::Lookup) |
| 39 | Rails::Generator::Base.send(:include, Rails::Generator::Commands) |
| 40 | |
| 41 | # Set up a default logger for convenience. |
| 42 | require 'rails_generator/simple_logger' |
| 43 | Rails::Generator::Base.logger = Rails::Generator::SimpleLogger.new(STDOUT) |
Note: See TracBrowser for help on using the browser.