yadecli 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/config-example.yml +1 -0
- data/lib/yadecli/service/composer_service.rb +1 -0
- data/lib/yadecli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a44a9ea70d28da9ff038f8cdedebd2dd4bed6cbe675779ea04365b5fd125b153
|
|
4
|
+
data.tar.gz: 383afa33fde904b3a921f64305c4a3dc83c8b6396d14872d6d0da0d05d5ec339
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa291dc050459a4712674344e72bc34b759c72e9e70baaac7b4bd2be36a26a67ec2ed191db5e31efb71ce8de48ad18bbed945c04efb0d28860aff7294c347e82
|
|
7
|
+
data.tar.gz: d6152e28590b6b2bffb1c7e29fdb403864d352f61dffb126cddc2cc85411f1ca3508e906d8aa48a46d118901bd6633f1c5813bc78fed79799dd38265c93bd4d3
|
data/Gemfile.lock
CHANGED
data/config-example.yml
CHANGED
|
@@ -6,6 +6,7 @@ password: user
|
|
|
6
6
|
access_token: some_realy_long_access_token
|
|
7
7
|
refresh_token: some_realy_long_refresh_token
|
|
8
8
|
expiration_time: 2018-08-28 17:34:08.775486917 +02:00
|
|
9
|
+
git_api_url: https://gitlab.com/api/v4
|
|
9
10
|
git_username: your_git_username
|
|
10
11
|
git_password: your_git_password
|
|
11
12
|
git_token: your_git_token
|
|
@@ -24,6 +24,7 @@ module Yadecli
|
|
|
24
24
|
CliUtil.print_header('YadeCli Composer Setup',
|
|
25
25
|
['Answer the following questions to setup Composer on this host:', ''])
|
|
26
26
|
|
|
27
|
+
AppConfig[:git_api_url] = UserInput.ask(' * Gitlab API Url?', :git_api_url)
|
|
27
28
|
AppConfig[:git_username] = UserInput.ask(' * Gitlab Username?', :git_username)
|
|
28
29
|
AppConfig[:git_password] = UserInput.ask(' * Gitlab Password?', :git_password)
|
|
29
30
|
AppConfig[:git_token] = UserInput.ask(' * Gitlab Api Token?', :git_token)
|
data/lib/yadecli/version.rb
CHANGED