Split Git related information to own class
Move the following methods:
* `Build::Info.branch_name` => `Build::Info::Git.branch_name`
* `Build::Info.current_git_tag` => `Build::Info::Git.tag_name`
* `Build::Info.commit_sha` => `Build::Info::Git.commit_sha`
* `Build::Info.latest_tag` => `Build::Info::Git.latest_tag`
* `Build::Info.latest_stable_tag` => `Build::Info::Git.latest_stable_tag`
Signed-off-by:
Balasankar "Balu" C <balasankar@gitlab.com>
parent
98841021
Showing
- lib/gitlab/build/check.rb 7 additions, 6 deletionslib/gitlab/build/check.rb
- lib/gitlab/build/facts.rb 4 additions, 2 deletionslib/gitlab/build/facts.rb
- lib/gitlab/build/info.rb 4 additions, 86 deletionslib/gitlab/build/info.rb
- lib/gitlab/build/info/git.rb 104 additions, 0 deletionslib/gitlab/build/info/git.rb
- lib/gitlab/tasks/build.rake 3 additions, 2 deletionslib/gitlab/tasks/build.rake
- lib/gitlab/tasks/qa.rake 2 additions, 1 deletionlib/gitlab/tasks/qa.rake
- lib/gitlab/util.rb 19 additions, 0 deletionslib/gitlab/util.rb
- spec/lib/gitlab/build/check_spec.rb 22 additions, 35 deletionsspec/lib/gitlab/build/check_spec.rb
- spec/lib/gitlab/build/facts_spec.rb 3 additions, 3 deletionsspec/lib/gitlab/build/facts_spec.rb
- spec/lib/gitlab/build/info/git_spec.rb 342 additions, 0 deletionsspec/lib/gitlab/build/info/git_spec.rb
- spec/lib/gitlab/build/info_spec.rb 5 additions, 224 deletionsspec/lib/gitlab/build/info_spec.rb
- spec/lib/gitlab/tasks/qa_spec.rb 2 additions, 2 deletionsspec/lib/gitlab/tasks/qa_spec.rb
- spec/support/macros.rb 16 additions, 0 deletionsspec/support/macros.rb
Loading
Please register or sign in to comment