module Apache::SecureDownload::Version
Constants
- MAJOR
- MINOR
- TINY
Public Class Methods
to_a()
click to toggle source
Returns array representation.
# File lib/apache/secure_download/version.rb 14 def to_a 15 [MAJOR, MINOR, TINY] 16 end
to_s()
click to toggle source
Short-cut for version string.
# File lib/apache/secure_download/version.rb 19 def to_s 20 to_a.join('.') 21 end