Created
September 14, 2011 17:49
-
-
Save cloudbring/1217237 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# register Padrino::Admin::AccessControl | |
# set :login_page, "/" | |
# access_control.roles_for :any do |role| | |
# role.protect "/profile" | |
# # role.protect "/admin" # Here a demo path | |
# end | |
# # Adding a role for users | |
# access_control.roles_for :users do |role| | |
# role.allow "/profile" | |
# end | |
class Tyrone < Padrino::Application | |
register Padrino::Rendering | |
register Padrino::Mailer | |
register Padrino::Helpers | |
register Padrino::Admin::AccessControl | |
enable :sessions | |
set :login_page, "/" | |
access_control.roles_for :any do |role| | |
role.protect "/profile" | |
# role.protect "/admin" # Here a demo path | |
end | |
# Adding a role for users | |
access_control.roles_for :users do |role| | |
role.allow "/profile" | |
end | |
## | |
# Caching support | |
# | |
# register Padrino::Cache | |
# enable :caching | |
# | |
# You can customize caching store engines: | |
# | |
# set :cache, Padrino::Cache::Store::Memcache.new(::Memcached.new('127.0.0.1:11211', :exception_retry_limit => 1)) | |
# set :cache, Padrino::Cache::Store::Memcache.new(::Dalli::Client.new('127.0.0.1:11211', :exception_retry_limit => 1)) | |
# set :cache, Padrino::Cache::Store::Redis.new(::Redis.new(:host => '127.0.0.1', :port => 6379, :db => 0)) | |
# set :cache, Padrino::Cache::Store::Memory.new(50) | |
# set :cache, Padrino::Cache::Store::File.new(Padrino.root('tmp', app_name.to_s, 'cache')) # default choice | |
# | |
## | |
# Application configuration options | |
# | |
# set :raise_errors, true # Raise exceptions (will stop application) (default for test) | |
# set :dump_errors, true # Exception backtraces are written to STDERR (default for production/development) | |
# set :show_exceptions, true # Shows a stack trace in browser (default for development) | |
# set :logging, true # Logging in STDOUT for development and file for production (default only for development) | |
# set :public, "foo/bar" # Location for static assets (default root/public) | |
# set :reload, false # Reload application files (default in development) | |
# set :default_builder, "foo" # Set a custom form builder (default 'StandardFormBuilder') | |
# set :locale_path, "bar" # Set path for I18n translations (default your_app/locales) | |
# disable :sessions # Disabled sessions by default (enable if needed) | |
# disable :flash # Disables rack-flash (enabled by default if Rack::Flash is defined) | |
# layout :my_layout # Layout can be in views/layouts/foo.ext or views/foo.ext (default :application) | |
# | |
## | |
# You can configure for a specified environment like: | |
# | |
# configure :development do | |
# set :foo, :bar | |
# disable :asset_stamp # no asset timestamping for dev | |
# end | |
# | |
## | |
# You can manage errors like: | |
# | |
# error 404 do | |
# render 'errors/404' | |
# end | |
# | |
# error 505 do | |
# render 'errors/505' | |
# end | |
# | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment