method

create_tmp_directories

Importance_0
create_tmp_directories() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/server.rb, line 123
      def create_tmp_directories
        %(cache pids sessions sockets).each do |dir_to_make|
          FileUtils.mkdir_p(File.join(Rails.root, 'tmp', dir_to_make))
        end
      end
Register or log in to add new notes.