Class: Deployed::RepoData

Inherits:
Object
  • Object
show all
Defined in:
lib/deployed.rb

Instance Method Summary collapse

Instance Method Details

#branchObject

[View source]

15
16
17
# File 'lib/deployed.rb', line 15

def branch
  @branch ||= git_branch || read_file('BRANCH').strip.presence
end

#extraObject

[View source]

47
48
49
# File 'lib/deployed.rb', line 47

def extra
  @extra ||= version(:extra)
end

#labelObject

[View source]

31
32
33
# File 'lib/deployed.rb', line 31

def label
  tag.presence || branch
end

#majorObject

[View source]

35
36
37
# File 'lib/deployed.rb', line 35

def major
  @major ||= version(:major)
end

#minorObject

[View source]

39
40
41
# File 'lib/deployed.rb', line 39

def minor
  @minor ||= version(:minor)
end

#patchObject

[View source]

43
44
45
# File 'lib/deployed.rb', line 43

def patch
  @patch ||= version(:patch)
end

#releaseObject

[View source]

19
20
21
# File 'lib/deployed.rb', line 19

def release
  @release ||= read_file('RELEASE').strip
end

#release_urlObject

[View source]

23
24
25
# File 'lib/deployed.rb', line 23

def release_url
  @release_url ||= read_file('REPO').strip
end

#revisionObject

[View source]

11
12
13
# File 'lib/deployed.rb', line 11

def revision
  @revision ||= git_rev || read_file('REVISION').strip.presence
end

#revision_shortObject

[View source]

27
28
29
# File 'lib/deployed.rb', line 27

def revision_short
  @revision_short ||= revision&.slice 0..6
end

#tagObject

[View source]

7
8
9
# File 'lib/deployed.rb', line 7

def tag
  @tag ||= git_tag || read_file('TAG').strip.presence
end

#version_hashObject

[View source]

51
52
53
# File 'lib/deployed.rb', line 51

def version_hash
  @version_hash ||= /\Av(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(?<extra>\S*)/.match(label)
end

#version_labelObject

[View source]

55
56
57
# File 'lib/deployed.rb', line 55

def version_label
  major == 0 && minor == 0 && patch == 0 ? 'WIP' : "#{major}.#{minor}.#{patch}"
end