Module: Celluloid::Notices
- Defined in:
- lib/celluloid/notices.rb
Constant Summary collapse
- @@notices =
[]
Class Method Summary collapse
Class Method Details
.backported ⇒ Object
6 7 8 |
# File 'lib/celluloid/notices.rb', line 6 def backported @@notices << [:info, "Celluloid #{Celluloid::VERSION} is running in BACKPORTED mode. [ http://git.io/vJf3J ]"] end |
.output ⇒ Object
10 11 12 |
# File 'lib/celluloid/notices.rb', line 10 def output @@notices.each { |type, notice| Celluloid::Internals::Logger.send type, notice } end |