Remove unecessary config_accessors.

This commit is contained in:
José Valim 2011-12-24 09:59:28 +01:00
parent 39081f1660
commit e6bfcc21a8
3 changed files with 5 additions and 11 deletions

View File

@ -35,7 +35,7 @@ module AbstractController
include AbstractController::ViewPaths
included do
config_accessor :protected_instance_variables, :instance_reader => false
class_attribute :protected_instance_variables
self.protected_instance_variables = []
end
@ -59,12 +59,6 @@ module AbstractController
attr_internal_writer :view_context_class
# Explicitly define protected_instance_variables so it can be
# inherited and overwritten by other modules if needed.
def protected_instance_variables
config.protected_instance_variables
end
def view_context_class
@_view_context_class ||= self.class.view_context_class
end

View File

@ -42,20 +42,20 @@ module ActionController #:nodoc:
# For Rails, this directory has already been set to Rails.public_path (which is usually set to <tt>Rails.root + "/public"</tt>). Changing
# this setting can be useful to avoid naming conflicts with files in <tt>public/</tt>, but doing so will likely require configuring your
# web server to look in the new location for cached files.
config_accessor :page_cache_directory
class_attribute :page_cache_directory
self.page_cache_directory ||= ''
# Most Rails requests do not have an extension, such as <tt>/weblog/new</tt>. In these cases, the page caching mechanism will add one in
# order to make it easy for the cached files to be picked up properly by the web server. By default, this cache extension is <tt>.html</tt>.
# If you want something else, like <tt>.php</tt> or <tt>.shtml</tt>, just set Base.page_cache_extension. In cases where a request already has an
# extension, such as <tt>.xml</tt> or <tt>.rss</tt>, page caching will not add an extension. This allows it to work well with RESTful apps.
config_accessor :page_cache_extension
class_attribute :page_cache_extension
self.page_cache_extension ||= '.html'
# The compression used for gzip. If false (default), the page is not compressed.
# If can be a symbol showing the ZLib compression method, for example, :best_compression
# or :best_speed or an integer configuring the compression level.
config_accessor :page_cache_compression
class_attribute :page_cache_compression
self.page_cache_compression ||= false
end

View File

@ -56,7 +56,7 @@ module ActionController
include AbstractController::Helpers
included do
config_accessor :helpers_path, :include_all_helpers
class_attribute :helpers_path, :include_all_helpers
self.helpers_path ||= []
self.include_all_helpers = true
end