vmail 1.8.2 → 1.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ module Vmail
16
16
  # borrowed from ActionView/Helpers
17
17
  def number_to_human_size(number)
18
18
  if number.to_i < 1024
19
- "<1kb" # round up to 1kh
19
+ "< 1k" # round up to 1kh
20
20
  else
21
21
  max_exp = UNITS.size - 1
22
22
  exponent = (Math.log(number) / Math.log(1024)).to_i # Convert to base 1024
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '1.8.2'
2
+ VERSION = '1.8.3'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.8.2
5
+ version: 1.8.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi