public this repo is viewable by everyone
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Remove unused ignore_missing_templates option
lifo (author)
26 days ago
commit  3f8d3cd04ff0bd7cbf70c11d49a3dc009dfa98a0
tree    5dff9d33a4b3cbe31b3fef598bd0b48786007a10
parent  17d4164a16e5fe7b252375211424a2999a331291
...
327
328
329
330
331
332
333
334
335
...
1219
1220
1221
1222
 
1223
1224
1225
...
327
328
329
 
 
 
330
331
332
...
1216
1217
1218
 
1219
1220
1221
1222
0
@@ -327,9 +327,6 @@ module ActionController #:nodoc:
0
     # Can be set to nil for no logging. Compatible with both Ruby's own Logger and Log4r loggers.
0
     cattr_accessor :logger
0
 
0
- # Turn on +ignore_missing_templates+ if you want to unit test actions without making the associated templates.
0
- cattr_accessor :ignore_missing_templates
0
-
0
     # Controls the resource action separator
0
     @@resource_action_separator = "/"
0
     cattr_accessor :resource_action_separator
0
@@ -1219,7 +1216,7 @@ module ActionController #:nodoc:
0
       end
0
 
0
       def add_class_variables_to_assigns
0
- %w(view_paths logger ignore_missing_templates).each do |cvar|
0
+ %w(view_paths logger).each do |cvar|
0
           @assigns[cvar] = self.send(cvar)
0
         end
0
       end
...
20
21
22
23
24
25
26
...
20
21
22
 
23
24
25
0
@@ -20,7 +20,6 @@ end
0
 ActiveSupport::Deprecation.debug = true
0
 
0
 ActionController::Base.logger = nil
0
-ActionController::Base.ignore_missing_templates = false
0
 ActionController::Routing::Routes.reload rescue nil
0
 
0
 

Comments

    No one has commented yet.