Sha256: 3af75cc1a5d8bb061ae2ad37d6adc75742671e5c1010dfd06a8f266af8ecd31a

Contents?: true

Size: 764 Bytes

Versions: 1

Compression:

Stored size: 764 Bytes

Contents

ActiveSupport.on_load :action_controller do
	helper Kblog::ArticlesHelper
end

# select either section basic or role-based authentication
#
#########################################################
# role-based rights to create/alter blog-articles       #
#########################################################
Kblog.auth_type = 'role'   
Kblog.auth_role = 'blogger'   # role needed to alter blogs
Kblog.user_class = 'User'     # class of blog-author

#########################################################
# http-basic-auth                                       #
#########################################################
#Kblog.auth_type == 'basic'
#Kblog.authname = 'blogger'
#Kblog.authpassword = 'changeme'


require 'RedCloth'
require 'will_paginate'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kblog-0.0.2 test/dummy/config/initializers/kblog_init.rb