Never been to DZone Snippets before?

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

About this user

RSL http://ostracons.com/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Test RAILS_ENV

I got tired of typing ENV["RAILS_ENV"] == "test" over and over in my app so I came up with a method for a mixin.

module Mesclun
  def env?(val)
    ENV["RAILS_ENV"] == case val
      when :dev, :devel, :development: "development"
      when :pro, :prod, :production: "production"
      when :test; "test"
    end
  end
end


Pretty simple but a real finger-saver, for me at least. :)
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS