public
Description: Miscellaneous Rake tasks and so on that I use on most projects.
Homepage:
Clone URL: git://github.com/airblade/air_blade_tools.git
air_blade_tools / init.rb
100644 11 lines (9 sloc) 0.599 kb
1
2
3
4
5
6
7
8
9
10
11
# http://drawohara.com/post/23559471 (modified a little by me).
# See documentation for +pan_helper+ method.
ActionController::Base.send :include, AirBlade::HelperHelper
ActionController::Base.send :include, AirBlade::LayoutHelper
ActionController::Base.send :protected, :pan_helper
 
# Foreign key constraints.
ActiveRecord::Migration.send :extend, AirBlade::Migrations::SchemaStatements
ActiveRecord::ConnectionAdapters::TableDefinition.send :include, AirBlade::Migrations::SchemaDefinitions
ActiveRecord::ConnectionAdapters::SchemaStatements.send :include, AirBlade::Migrations::SchemaStatements