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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/gitlabuddy +20 -0
  3. metadata +5 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e33c794f03911c92eb41a630e23bfd8513fe5cc
4
- data.tar.gz: 4788495acbedde1f0829b0cdf44ca061117789ff
3
+ metadata.gz: 0ddce23f909bd5564fc08cd02b113975393bdf94
4
+ data.tar.gz: 4993a67e63af91da706655ccdd03a2fa9d97f82f
5
5
  SHA512:
6
- metadata.gz: 9b79758152901c32661e2fa64abb60e692812bddcca2c959484ec4fb460c34cacf1d1b86bec87917272140e634659a4ae4dbeaeb2a1dafd403e32ac1a600d626
7
- data.tar.gz: 45ac877a6f084d8c6ab326e64c0ce52d3bc88e56fe1d108cb60796a65b8318feca0c2ddecfc1c9c365a869987ee56222ac4cf5a93e00e4ce1fb03b8ae5b6872c
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.1
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: http://rubygems.org/gems/gitlabuddy
40
+ homepage: https://rubygems.org/gems/gitlabuddy
39
41
  licenses:
40
42
  - MIT
41
43
  metadata: {}