Flowdock
method

svn_info

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: Rails::Info
svn_info() protected

No documentation

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

Hide source
# File railties/builtin/rails_info/rails/info.rb, line 70
        def svn_info
          env_lang, ENV['LC_ALL'] = ENV['LC_ALL'], 'C'
          Dir.chdir(rails_vendor_root) do
            silence_stderr { `svn info` }
          end
        ensure
          ENV['LC_ALL'] = env_lang
        end
Register or log in to add new notes.