Class: Rpush::Deprecation
- Inherits:
-
Object
- Object
- Rpush::Deprecation
- Defined in:
- lib/rpush/deprecation.rb
Class Method Summary collapse
Class Method Details
.muted ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/rpush/deprecation.rb', line 3 def self.muted orig_val = Thread.current[:rpush_mute_deprecations] Thread.current[:rpush_mute_deprecations] = true yield ensure Thread.current[:rpush_mute_deprecations] = orig_val end |
.muted? ⇒ Boolean
11 12 13 |
# File 'lib/rpush/deprecation.rb', line 11 def self.muted? Thread.current[:rpush_mute_deprecations] == true end |
.warn(msg) ⇒ Object
15 16 17 18 |
# File 'lib/rpush/deprecation.rb', line 15 def self.warn(msg) return if Rpush::Deprecation.muted? STDERR.puts "DEPRECATION WARNING: #{msg}" end |
.warn_with_backtrace(msg) ⇒ Object
20 21 22 23 24 |
# File 'lib/rpush/deprecation.rb', line 20 def self.warn_with_backtrace(msg) return if Rpush::Deprecation.muted? trace = "\n\nCALLED FROM:\n" + caller.join("\n") warn(msg + trace) end |