Module: VestalVersions::VersionTagging::InstanceMethods

Defined in:
lib/vestal_versions/version_tagging.rb

Overview

Adds an instance method which allows version tagging through the parent object.

Instance Method Summary collapse

Instance Method Details

#tag_version(tag) ⇒ Object

Accepts a single string argument which is attached to the version record associated with the current version number of the parent object.

Returns the given tag if successful, nil if not. Tags must be unique within the scope of the parent object. Tag creation will fail if non-unique.

Version records corresponding to version number 1 are not typically created, but one will be built to house the given tag if the parent object’s current version number is 1.



17
18
19
20
# File 'lib/vestal_versions/version_tagging.rb', line 17

def tag_version(tag)
  v = versions.at(version) || versions.build(:number => 1)
  v.tag!(tag)
end