Last active
December 11, 2015 10:29
-
-
Save budnik/4587241 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 LocaleController < ApplicationController | |
respond_to :json | |
caches_page :show, :gzip => :best_compression | |
def show | |
expires_in 1.year | |
respond_with YAML::load File.open File.join Rails.root, %W[config locales #{params[:id]}.yml] | |
end | |
end |
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
MyApp::Application.routes.draw do | |
resources :locale, :only => :show | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment