Flowdock
method

git_info

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Rails::Info
git_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 git_info
          env_lang, ENV['LC_ALL'] = ENV['LC_ALL'], 'C'
          Dir.chdir(rails_vendor_root) do
            silence_stderr { `git log -n 1` }
          end
        ensure
          ENV['LC_ALL'] = env_lang
        end
Register or log in to add new notes.