Sha256: d9f376b31b0929986a8ceafbfd43e1732e25432d1e6fd7c6e3d471179947814a
Contents?: true
Size: 865 Bytes
Versions: 1
Compression:
Stored size: 865 Bytes
Contents
Kblog.user_class = 'User' # class of blog-author # select EITHER section basic or role-based authentication # ####################################################### # role-based rights to create/alter blog-articles # # user_class must respond_to :roles - and each role # # string representation role.to_s == Kblog.auth_role # ####################################################### #Kblog.auth_type = 'role' #Kblog.auth_role = 'blogger' # role needed to alter blogs ######################################################### # http-basic-auth # ######################################################### Kblog.auth_type == 'basic' Kblog.authname = 'blogger' Kblog.authpassword = 'changeme' ActiveSupport.on_load :action_controller do helper Kblog::ArticlesHelper end require 'RedCloth' require 'will_paginate'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kblog-0.0.2 | lib/generators/kblog/templates/initializer.rb |