# File lib/omniauth/strategies/github.rb, line 13
      def initialize(app, client_id = nil, client_secret = nil, options = {}, &block)
        client_options = {
          :site => 'https://github.com/',
          :authorize_path => '/login/oauth/authorize',
          :access_token_path => '/login/oauth/access_token'
        }
        
        super(app, :github, client_id, client_secret, client_options, options, &block)
      end