Sha256: 482c428883b395854f6f3b944231023ff5afe9b833828ee4b7c8364f08ae9e06
Contents?: true
Size: 1.34 KB
Versions: 7
Compression:
Stored size: 1.34 KB
Contents
module WhowishWord module Initializer def install_route Rails.application.routes.prepend do match "whowish_word/change_word", :to=>"whowish_word#change_word" match "whowish_word_css", :to=>"whowish_word#css" match "whowish_word_js", :to=>"whowish_word#js" end end # def run_database_migration # Dir[File.expand_path("../db_migration/#{@orm_engine}/**/*.rb", __FILE__)].each {|f| require f} # end def install_hook Dir[File.expand_path("../action_controller/**/*.rb", __FILE__)].each {|f| require f} Dir[File.expand_path("../action_mailer/**/*.rb", __FILE__)].each {|f| require f} Dir[File.expand_path("../action_view/**/*.rb", __FILE__)].each {|f| require f} end def load_rails paths = ["controllers"] # load all controllers, helpers, and models paths.each do |dir| path = File.join(File.dirname(__FILE__), 'rails', 'app', dir) $LOAD_PATH.insert(0, path) ActiveSupport::Dependencies.autoload_paths.insert(0, path) ActiveSupport::Dependencies.autoload_once_paths.delete(path) end ActionController::Base.append_view_path(File.join(File.dirname(__FILE__), 'rails', 'app')) end end end
Version data entries
7 entries across 7 versions & 1 rubygems