Class: Fixnum
- Inherits:
-
Object
- Object
- Fixnum
- Defined in:
- lib/fmq/queue_manager.rb
Overview
add kb, mb and gb methods for easy use in the config file
Instance Method Summary collapse
Instance Method Details
#gb ⇒ Object
30 31 32 |
# File 'lib/fmq/queue_manager.rb', line 30 def gb self.mb * 1024 end |
#kb ⇒ Object
22 23 24 |
# File 'lib/fmq/queue_manager.rb', line 22 def kb self * 1024 end |
#mb ⇒ Object
26 27 28 |
# File 'lib/fmq/queue_manager.rb', line 26 def mb self.kb * 1024 end |