Skip to content

Instantly share code, notes, and snippets.

@dreamr
Created September 29, 2010 17:50
Show Gist options
  • Save dreamr/603184 to your computer and use it in GitHub Desktop.
Save dreamr/603184 to your computer and use it in GitHub Desktop.
class Multistage
class << self
[:development, :test, :cucumber, :staging, :production].each do |env|
self.send(:define_method, "#{env}?") do
ENV["RAILS_ENV"] == env.to_s
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment