Sha256: 90f9998dbe7f4cb1f0552c4fe6e73c92a1beb55eafbf37ee234bfa0921d47893

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

require 'rails/railtie'
require 'ixtlan/guard/guard'
require 'ixtlan/guard/guard_rails'
require 'logger'
require 'fileutils'

module Ixtlan
  module Guard
    class Railtie < Rails::Railtie

      config.before_configuration do |app|
        app.config.guards_dir = File.join(Rails.root, "app", "guards")
        # needs to be here ?!?
        ::ActionController::Base.send(:include, Ixtlan::Guard::ActionController)
        ::ActionView::Base.send(:include, Ixtlan::Guard::Allowed)
      end
      
      config.after_initialize do |app|
        logger = app.config.logger || Rails.logger || Logger.new(STDERR)
        options = {
          :guards_dir => app.config.guards_dir,
          :cache => app.config.cache_classes
        }
        options[:logger] = logger unless defined?(Slf4r)
        FileUtils.mkdir_p(app.config.guards_dir)

        app.config.guard = Ixtlan::Guard::Guard.new(options)
      end

      gmethod = config.respond_to?(:generators)? :generators : :app_generators
      config.send(gmethod) do
        require 'rails/generators'
        require 'rails/generators/rails/controller/controller_generator'
        Rails::Generators::ControllerGenerator.hook_for :guard, :type => :boolean, :default => true do |controller|
          invoke controller, [ class_name, actions ]
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ixtlan-guard-0.9.0 lib/ixtlan/guard/railtie.rb