Sha256: fd5d02bc3939f11b07779a28c3bc824bfb954b4114c01896d4dacb5b17a3df3a
Contents?: true
Size: 1016 Bytes
Versions: 2
Compression:
Stored size: 1016 Bytes
Contents
module MyForum class Engine < ::Rails::Engine isolate_namespace MyForum require "jquery-rails" require 'bootstrap-sass' config.generators do |g| g.test_framework :rspec, :fixture => false g.assets false g.helper false end USE_CUSTOM_USER_MODEL = false CUSTOM_USER_CLASS = 'User' CUSTOM_USER_LOGIN_ATTR = 'login' CUSTOM_USER_PASSWORD_ATTR = 'password' CUSTOM_AUTHENTICATE_METHOD = 'users#authenticate' attr_accessor :use_custom_user_model, :custom_user_class, :custom_user_login_attr, :custom_user_password_attr, :custom_authenticate_method def initialize self.use_custom_user_model = USE_CUSTOM_USER_MODEL self.custom_user_class = CUSTOM_USER_CLASS self.custom_user_login_attr = CUSTOM_USER_LOGIN_ATTR self.custom_user_password_attr = CUSTOM_USER_PASSWORD_ATTR self.custom_authenticate_method = CUSTOM_AUTHENTICATE_METHOD end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
my_forum-0.0.1.beta2 | lib/my_forum/engine.rb |
my_forum-0.0.1.beta1 | lib/my_forum/engine.rb |