referring to version numbers in a gem
Fri, 11 Nov 2011 13:03:23 -0800 Post Comments
module MyAwesomeTool
VERSION = "0.1.0-1" # Major, minor, tiny, patch-level
end
puts MyAwesomeTool::VERSION
--
Phillip Gawlowski
gplus.to/phgaw | twitter.com/phgaw
A method of solution is perfect if we can forsee from the start,
and even prove, that following that method we shall attain our aim.
-- Leibniz
VERSION = "0.1.0-1" # Major, minor, tiny, patch-level
end
puts MyAwesomeTool::VERSION
--
Phillip Gawlowski
gplus.to/phgaw | twitter.com/phgaw
A method of solution is perfect if we can forsee from the start,
and even prove, that following that method we shall attain our aim.
-- Leibniz
