Created
July 7, 2010 07:25
-
-
Save ctrochalakis/466417 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Apiv2::MainController < ApplicationController | |
before_filter :lazy_developer | |
def lazy_developer | |
redirect_to params.merge(:host => 'localhost', :port => 3000) if params.key? :devel | |
redirect_to params.merge(:host => 'skroutz.gr', :port => 80) if params.key? :prod | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment