Module: Jekyll::RoundUpFormat

Defined in:
jekyll/_plugins/round-up-format.rb

Instance Method Summary collapse

Instance Method Details

#roundup(input) ⇒ Object



22
23
24
25
26
27
# File 'jekyll/_plugins/round-up-format.rb', line 22

def roundup(input)
    if (input == nil) 
         return input
     end 
    "#{format("%.0f", (input.ceil))}"
end