Environment-specific configuration in Merb
1 2 case Merb::Server.config[:environment] 3 when 'development' 4 # do some stuff 5 when 'production' 6 # do other stuff 7 end
DZone Snippets > automatthew > merb
13476 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 case Merb::Server.config[:environment] 3 when 'development' 4 # do some stuff 5 when 'production' 6 # do other stuff 7 end