Class: Deployed::RepoData
- Inherits:
-
Object
- Object
- Deployed::RepoData
- Defined in:
- lib/deployed.rb
Instance Method Summary collapse
- #branch ⇒ Object
- #extra ⇒ Object
- #label ⇒ Object
- #major ⇒ Object
- #minor ⇒ Object
- #patch ⇒ Object
- #release ⇒ Object
- #release_url ⇒ Object
- #revision ⇒ Object
- #revision_short ⇒ Object
- #tag ⇒ Object
- #version_hash ⇒ Object
- #version_label ⇒ Object
Instance Method Details
#branch ⇒ Object
15 16 17 |
# File 'lib/deployed.rb', line 15 def branch @branch ||= git_branch || read_file('BRANCH').strip.presence end |
#extra ⇒ Object
47 48 49 |
# File 'lib/deployed.rb', line 47 def extra @extra ||= version(:extra) end |
#label ⇒ Object
31 32 33 |
# File 'lib/deployed.rb', line 31 def label tag.presence || branch end |
#major ⇒ Object
35 36 37 |
# File 'lib/deployed.rb', line 35 def major @major ||= version(:major) end |
#minor ⇒ Object
39 40 41 |
# File 'lib/deployed.rb', line 39 def minor @minor ||= version(:minor) end |
#patch ⇒ Object
43 44 45 |
# File 'lib/deployed.rb', line 43 def patch @patch ||= version(:patch) end |
#release ⇒ Object
19 20 21 |
# File 'lib/deployed.rb', line 19 def release @release ||= read_file('RELEASE').strip end |
#release_url ⇒ Object
23 24 25 |
# File 'lib/deployed.rb', line 23 def release_url @release_url ||= read_file('REPO').strip end |
#revision ⇒ Object
11 12 13 |
# File 'lib/deployed.rb', line 11 def revision @revision ||= git_rev || read_file('REVISION').strip.presence end |
#revision_short ⇒ Object
27 28 29 |
# File 'lib/deployed.rb', line 27 def revision_short @revision_short ||= revision&.slice 0..6 end |
#tag ⇒ Object
7 8 9 |
# File 'lib/deployed.rb', line 7 def tag @tag ||= git_tag || read_file('TAG').strip.presence end |
#version_hash ⇒ Object
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_label ⇒ Object
55 56 57 |
# File 'lib/deployed.rb', line 55 def version_label major == 0 && minor == 0 && patch == 0 ? 'WIP' : "#{major}.#{minor}.#{patch}" end |