Obtener dirección ip en app de ruby on rails
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
class ApplicationController < ActionController::Base def remote_ip if request.remote_ip == '127.0.0.1' '123.45.67.89' else request.remote_ip [indent=1]end[/indent] end end class MyController < ApplicationController def index @client_ip = remote_ip() end end