gitlabuddy 0.0.1 → 0.0.2
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/bin/gitlabuddy +20 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ddce23f909bd5564fc08cd02b113975393bdf94
|
|
4
|
+
data.tar.gz: 4993a67e63af91da706655ccdd03a2fa9d97f82f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d5168baf748dbc418964fd343f2a6e6729f3bd85e027e319f2350f927de3c91040ca388855dfae4cd936d1d35283aeb8d87b20bbeb2538ca121f327791019ad
|
|
7
|
+
data.tar.gz: 1d9767b9780d36bf89016f45160a4ed24679e6ff960113da0cb0d5df1760c9c8a76de0d1cf8088984c487fbc1e3bb983f8492c00defb62349ad059542f4417a7
|
data/bin/gitlabuddy
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
# ./bin/gitlabuddy
|
|
4
|
+
# puts 'My executable works!'
|
|
5
|
+
|
|
6
|
+
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
|
|
7
|
+
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
|
8
|
+
|
|
9
|
+
require 'gitlabuddy'
|
|
10
|
+
|
|
11
|
+
Gitlabuddy::Cli.start(ARGV)
|
|
12
|
+
|
|
13
|
+
# ./bin/gitlabuddy:8:in `<main>': uninitialized constant Gitlabbuddy (NameError)
|
|
14
|
+
|
|
15
|
+
# $ bundle exec bin/gitlabuddy
|
|
16
|
+
# bundler: failed to load command: bin/gitlabuddy (bin/gitlabuddy)
|
|
17
|
+
# LoadError: cannot load such file -- gitlabuddy
|
|
18
|
+
# bin/gitlabuddy:6:in `require'
|
|
19
|
+
# bin/gitlabuddy:6:in `<top (required)>'
|
|
20
|
+
# =
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlabuddy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Infralovers
|
|
@@ -26,16 +26,18 @@ dependencies:
|
|
|
26
26
|
version: 0.19.1
|
|
27
27
|
description: A gem to interact with GitLab
|
|
28
28
|
email: team@infralovers.com
|
|
29
|
-
executables:
|
|
29
|
+
executables:
|
|
30
|
+
- gitlabuddy
|
|
30
31
|
extensions: []
|
|
31
32
|
extra_rdoc_files: []
|
|
32
33
|
files:
|
|
34
|
+
- bin/gitlabuddy
|
|
33
35
|
- lib/gitlabuddy.rb
|
|
34
36
|
- lib/gitlabuddy/cli.rb
|
|
35
37
|
- lib/gitlabuddy/merge_request.rb
|
|
36
38
|
- lib/gitlabuddy/project.rb
|
|
37
39
|
- lib/gitlabuddy/request.rb
|
|
38
|
-
homepage:
|
|
40
|
+
homepage: https://rubygems.org/gems/gitlabuddy
|
|
39
41
|
licenses:
|
|
40
42
|
- MIT
|
|
41
43
|
metadata: {}
|