Sha256: d2ea83b9527f33c53142fd24f4f6c0f402e87c5ca51173617357b3088724dfc1
Contents?: true
Size: 515 Bytes
Versions: 9
Compression:
Stored size: 515 Bytes
Contents
class Bueller module Commands module Version class Write < Base def self.run_for(bueller, major, minor, patch, build) command = new bueller command.major = major command.minor = minor command.patch = patch command.build = build command.run end attr_accessor :major, :minor, :patch, :build def update_version version_helper.update_to major, minor, patch, build end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems