glman 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/glman/commands/base.rb +12 -12
- data/lib/glman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjQyNGY2OWNjZDA3MzJjZWQ2OWJkY2VjNzY3MDFiNGVjYTEyMTQ2YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzA5OTY5ZDZmYTc4MjgzODY0OTVjZDRkMTQ0ZTc1NTRkNTdhMTQxNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NjAxNDU2OTkwOTQ1ZjdiYTIyNWU1Nzk4NWU3ZDZkZGFmZDkzMzRhM2QzYTg1
|
10
|
+
NmI3NWUwZWYzZTc2ZDU0MzdmMDU0NzE0MjQ0NDhkZTAwYWQ4YjQ2YmYzOWQ5
|
11
|
+
YzdhNGQ4ZjBlYThhZDU5MTkxZmM2YTAzMGQxOTAyM2QwMzkyZDY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YWZhNjA4ZjZjZDM3OGQwMDk5ZjE5N2EzZWZjNDViM2ZjMzFhMTRhZDVkN2Fk
|
14
|
+
YTY5OTBhYTllMTNkNjJhNWM0NzU0ZThjNmNlNGU1NTVlZDYyM2JmZDQyODBh
|
15
|
+
NWU1NWQ3NzI5MDk0YTBlMDM3YjQyMGZiYTlmY2E4NzFjMzU3YmU=
|
data/lib/glman/commands/base.rb
CHANGED
@@ -57,7 +57,7 @@ module Glman
|
|
57
57
|
if clear?
|
58
58
|
configuration.clear_user_aliases
|
59
59
|
else
|
60
|
-
params.empty? ? show_aliases : configuration.add_user_alias(email: params[0], alias: params[1])
|
60
|
+
params.empty? ? configuration.show_aliases : configuration.add_user_alias(email: params[0], alias: params[1])
|
61
61
|
end
|
62
62
|
config
|
63
63
|
end
|
@@ -148,23 +148,23 @@ module Glman
|
|
148
148
|
|
149
149
|
def help_page
|
150
150
|
%{
|
151
|
-
|
151
|
+
commands:
|
152
152
|
|
153
|
-
|
154
|
-
|
153
|
+
config # display current configuration
|
154
|
+
config <gitlab_url> <private_token> --init # init configuration
|
155
155
|
|
156
|
-
|
157
|
-
|
158
|
-
|
156
|
+
alias # display aliases
|
157
|
+
alias <user_email> <alias> # make alias for user email
|
158
|
+
alias --clear # clear all aliases
|
159
159
|
|
160
|
-
|
161
|
-
|
160
|
+
cache # build user cache for better performance RECOMMENDED
|
161
|
+
cache --clear # clear user cache
|
162
162
|
|
163
|
-
|
163
|
+
mr <user_email_or_alias> # create merge request for user for current branch to master with title as last commit message
|
164
164
|
|
165
|
-
|
165
|
+
mr <user_email_or_alias> <message> <target_branch> --push <origin> # full options for merge request (default origin is a origin :D)
|
166
166
|
|
167
|
-
|
167
|
+
Any questions pniemczyk@o2.pl or go to https://github.com/pniemczyk/glman
|
168
168
|
}
|
169
169
|
end
|
170
170
|
|
data/lib/glman/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paweł Niemczyk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|