Class: Howler::Util

Inherits:
Object
  • Object
show all
Defined in:
lib/howler/support/util.rb

Class Method Summary collapse

Class Method Details

.at(time) ⇒ Object



7
8
9
10
# File 'lib/howler/support/util.rb', line 7

def self.at(time)
  return "" unless time
  Time.at(time).strftime("%b %d %Y %H:%M:%S")
end

.constantize(camel_cased_word) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/howler/support/util.rb', line 12

def self.constantize(camel_cased_word)
  names = camel_cased_word.split('::')
  names.shift if names.empty? || names.first.empty?

  constant = Object
  names.each do |name|
    constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
  end
  constant
end

.nowObject



3
4
5
# File 'lib/howler/support/util.rb', line 3

def self.now
  Time.now.strftime("%b %d %Y %H:%M:%S")
end