gitlab-cli 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 24d2d44551422b61b38e4cdbad093fe8c07efc18
4
+ data.tar.gz: e161ba64f99b85140349f15f5955474c108029a2
5
+ SHA512:
6
+ metadata.gz: 6c72ee0cbff4340a08cd90085597b3ba2343ef33002824262ea75197671d71a355dfaacec97fda32bd46f939436b07e3a8b0088a7f950489ba916a4defec996d
7
+ data.tar.gz: dc4633e3f6aff492e367729111df79da9ff9c244063f9534136c5dc9debcd4bb08084aa9e5d20ab30749fffb9f8a898457f3901d464a146605f1912bdb9ce1c9
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lab.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Johannes Gorset
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,30 @@
1
+ # Lab
2
+
3
+ Command-line client for GitLab.
4
+
5
+ ## Installation
6
+
7
+ $ gem install lab
8
+
9
+ ## Usage
10
+
11
+ $ lab
12
+
13
+ # Create a new repsository
14
+ $ lab repository create hello-world
15
+
16
+ # List repositores
17
+ $ lab repository list
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create new Pull Request
26
+
27
+ ## I love you
28
+
29
+ Johannes Gorset made this. You should [tweet me](http://twitter.com/jgorset) if you can't get
30
+ it to work. In fact, you should tweet me anyway.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/lab ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "lab"
4
+ require "gitlab"
5
+
6
+ begin
7
+ Lab::CLI.start
8
+ rescue Gitlab::Error::Error => e
9
+ warn e.message
10
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'lab/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gitlab-cli"
8
+ spec.version = Lab::VERSION
9
+ spec.authors = ["Johannes Gorset"]
10
+ spec.email = ["jgorset@gmail.com"]
11
+ spec.description = "Command-line client for GitLab"
12
+ spec.summary = "Command-line client for GitLab"
13
+ spec.homepage = "http://github.com/jgorset/lab"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "thor"
22
+ spec.add_dependency "gitlab"
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.3"
25
+ spec.add_development_dependency "rake"
26
+ end
@@ -0,0 +1,30 @@
1
+ require "lab/version"
2
+ require "yaml"
3
+ require "gitlab"
4
+ require "lab/cli"
5
+
6
+ module Lab
7
+ DOTFILE = ENV["HOME"] + "/.gitlab"
8
+
9
+ begin
10
+ file = File.open DOTFILE
11
+ rescue
12
+ puts "Hi! Since this is your first time using lab, you must authenticate before proceeding."
13
+
14
+ CLI.new.configure
15
+
16
+ puts
17
+ puts "Thanks, you're good to go!"
18
+ puts
19
+
20
+ retry
21
+ end
22
+
23
+ configuration = YAML.load file.read
24
+
25
+ Gitlab.configure do |config|
26
+ config.endpoint = "http://#{configuration["domain"]}/api/v3"
27
+ config.private_token = configuration["private_token"]
28
+ config.user_agent = "Lab #{VERSION}"
29
+ end
30
+ end
@@ -0,0 +1,24 @@
1
+ require "thor"
2
+ require "lab/subcommands"
3
+
4
+ module Lab
5
+
6
+ class CLI < Thor
7
+
8
+ desc "configure", "Configure lab"
9
+ def configure
10
+ domain = ask "Domain:"
11
+ private_token = ask "Private token:"
12
+
13
+ yaml = YAML.dump "domain" => domain, "private_token" => private_token
14
+
15
+ file = File.open DOTFILE, "w" do |file|
16
+ file.write yaml
17
+ end
18
+ end
19
+
20
+ desc "repository COMMAND", "Manage repositories"
21
+ subcommand "repository", Subcommands::Repository
22
+ end
23
+
24
+ end
@@ -0,0 +1,3 @@
1
+ module Subcommands
2
+ require "lab/subcommands/repository"
3
+ end
@@ -0,0 +1,23 @@
1
+ module Lab
2
+
3
+ module Subcommands
4
+
5
+ class Repository < Thor
6
+
7
+ desc "repository list", "List repositories"
8
+ def list
9
+ Gitlab.projects.each do |project|
10
+ puts project.name
11
+ end
12
+ end
13
+
14
+ desc "repository create NAME", "Create a new repository"
15
+ def create
16
+ Gitlab.create_project name
17
+ end
18
+
19
+ end
20
+
21
+ end
22
+
23
+ end
@@ -0,0 +1,3 @@
1
+ module Lab
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitlab-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Johannes Gorset
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: gitlab
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Command-line client for GitLab
70
+ email:
71
+ - jgorset@gmail.com
72
+ executables:
73
+ - lab
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - .gitignore
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - bin/lab
83
+ - lab.gemspec
84
+ - lib/lab.rb
85
+ - lib/lab/cli.rb
86
+ - lib/lab/subcommands.rb
87
+ - lib/lab/subcommands/repository.rb
88
+ - lib/lab/version.rb
89
+ homepage: http://github.com/jgorset/lab
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - '>='
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.0.0
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Command-line client for GitLab
113
+ test_files: []