6 lines
291 B
Ruby
6 lines
291 B
Ruby
APP_CONFIG = Rails.application.config_for('application')
|
|
# Remove '/' from the end of url
|
|
APP_CONFIG.keys.select {|key| key =~ /_url\Z/}.each {|key| APP_CONFIG[key] = APP_CONFIG[key].chomp('/') if APP_CONFIG[key].respond_to?(:chomp)}
|
|
# Paginates a static array
|
|
require 'will_paginate/array'
|