I'm looking for RoR solution to register direct redirects from my site, php-ga looks good but it is PHP.
I mean I have some controller#redirect action which makes smth like this
def redirect
link = Links.find_by_key params[:key]
redirect_to link.url
end
That makes flawless redirects from http://myurl.com/XXX to target location for any external references.
I definitely do not want to use real redirect page with JS code. And PHP-GA ( http://code.google.com/p/php-ga/ ) looks like the only prod-level and documented solution to register visits in Google Analytics directly from controller, but it's on PHP.
So, I return to my original question: Is there any php-ga ports to Ruby on Rails?