An error occurred while retrieving approval data for this merge request.
Add 'gdk' command wrapper and gem
1 unresolved thread
1 unresolved thread
Combine make
and ./run
into gdk
. Can be invoked as gdk
, e.g. gdk run db
.
This does not remove make
and ./run
, it just adds an integrated wrapper.
Installation become:
gem install gitlab-development-kit
gdk init # clones repo
cd gitlab-development-kit
gdk install gitlab_repo=https://bla
Merge request reports
Activity
Added 1 commit:
- 5ce7fd47 - Remove unused env.sh
Added 1 commit:
- 8e49ac73 - Align all the things
Added 1 commit:
- aba04480 - Prefer explicit "gdk install"
Added 1 commit:
- 6f4b6201 - Add comments about bin/lib separation
- bin/gdk 0 → 100755
3 4 # Gitlab Development Kit CLI launcher 5 # 6 # Note to contributors: this script must not change (much) because it is 7 # installed outside the gitlab-development-kit repository with 'gem 8 # install'. 9 10 def main 11 case ARGV.first 12 when 'init' 13 if ARGV.count > 2 14 puts "Usage: gdk init [DIR]" 15 return false 16 end 17 18 cmd = %W(git clone -b gdk-cli https://gitlab.com/gitlab-org/gitlab-development-kit.git) Added 1 commit:
- ba7246d1 - Prepare for merge
Added 1 commit:
- bea998ee - Explain what is right, not just what is wrong
mentioned in commit 3fd2f7d5
Please register or sign in to reply