Sha256: 86908e206e543c9c0b27460ae5263e55043a1ddfe537700caf1bc1aea5229870

Contents?: true

Size: 610 Bytes

Versions: 1

Compression:

Stored size: 610 Bytes

Contents

require 'rails'

# An engine doesn't require it's own dependencies automatically. We also don't
# want the applications to have to do that.
require 'cancan'
require 'authlogic'
require 'kaminari'
require 'iq_rdf'
require 'json'
require 'rails_autolink'

module Iqvoc

  class Engine < Rails::Engine

    # paths.lib.tasks  << "lib/engine_tasks"

    # This will be defined in Rails 3.1 (as well as all the tasks in lib/engine_tasks)
    # def self.load_seed
    #   seed_file = Iqvoc::Engine.find_root_with_flag("db").join('db/seeds.rb')
    #   load(seed_file) if File.exist?(seed_file)
    # end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iqvoc-3.3.0 config/engine.rb