module Versionize

Versionize provides a simple version management and reporting interface for Ruby projects. Include the Versionize module in your class, set the @version variable, and start using the version method. Away you go.

Public Class Methods

included(base) click to toggle source
# File lib/versionize.rb, line 10
def self.included(base)
  base.extend(ClassMethods)
end