Guest User

Untitled

a guest
Apr 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. module Rack
  2. class LocaleSetter
  3. def initialize app
  4. @app = app
  5. end
  6.  
  7. def call env
  8. locale = env["HTTP_HOST"].match(/^[a-z]{2}(?=\.)/)
  9. I18n.locale = locale ? locale.to_s : 'es'
  10. @app.call env
  11. end
  12. end
  13. end
Add Comment
Please, Sign In to add comment