trabajo-afectivo/lib/application_handle_info.rb

26 lines
475 B
Ruby
Raw Normal View History

module ApplicationHandleInfo
def self.current
Thread.current[:application_handle] || 'unknown'
end
def self.current=(name)
Thread.current[:application_handle] = name
end
2017-11-23 08:09:44 +00:00
def self.postmaster?
return false if current.blank?
2017-11-23 08:09:44 +00:00
current.split('.')[1] == 'postmaster'
end
def self.use(name)
raise ArgumentError, 'requires a block' if !block_given?
orig = current
self.current = name
yield
ensure
self.current = orig
end
end