Sha256: 30225facba3b62d265d8e184d2ed933a9d434ffe5c2b72cb11249aad52847488
Contents?: true
Size: 699 Bytes
Versions: 1
Compression:
Stored size: 699 Bytes
Contents
#Copyright (c) 2008 Peter H. Boling of 9thBit LLC #Released under the MIT license module NinthBit module CustomEnvironments def self.included(base) base.extend(ClassMethods) base.cattr_accessor :local_environments base.local_environments = %w( development test ) base.cattr_accessor :deployed_environments base.deployed_environments = %w( production staging ) end module ClassMethods def consider_local? local_environments.include?(defined?(Rails) ? Rails.env : RAILS_ENV) end def consider_deployed? deployed_environments.include?(defined?(Rails) ? Rails.env : RAILS_ENV) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pboling-sanitize_email-0.3.0 | lib/sanitize_email/custom_environments.rb |