hu 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: 8d8d4e0d3178c2a45526d2483041fa781115a450
4
+ data.tar.gz: a8ca6f62f38b06a8c47881bb51b19b9a725e6628
5
+ SHA512:
6
+ metadata.gz: 4c3c895b4145911370891b7f7e9274d1226b0ce4439b1080cd9b572a43f91097b0fcbe99a1c45a1669236df903aaab99947e354fba9a4c5fa2e04aa7976f60b7
7
+ data.tar.gz: 184285ed9316e0206f25c4d35bec3992a7c528011f3f3988de123e41625e67179be3b91ec4c2cbcfe28fc318de2b1b5a9e5a74cb531254cc9cd99cd738c1d658
@@ -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 hu.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 moe@busyloop.net
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,41 @@
1
+ # Heroku Utility
2
+
3
+ Small utility to augment the toolbelt.
4
+
5
+ ## Installation
6
+
7
+ $ gem install hu
8
+
9
+ ## Contributing
10
+
11
+ Patches are welcome, especially bugfixes.
12
+
13
+ 1. Fork it
14
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
15
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
16
+ 4. Push to the branch (`git push origin my-new-feature`)
17
+ 5. Create new Pull Request
18
+
19
+ ## License
20
+
21
+ Copyright (C) 2015, moe@busyloop.net
22
+
23
+ Permission is hereby granted, free of charge, to any person obtaining a
24
+ copy of this software and associated documentation files (the "Software"),
25
+ to deal in the Software without restriction, including without limitation
26
+ the rights to use, copy, modify, merge, publish, pulverize, distribute,
27
+ synergize, compost, defenestrate, sublicense, and/or sell copies of the
28
+ Software, and to permit persons to whom the Software is furnished to do
29
+ so, subject to the following conditions:
30
+
31
+ The above copyright notice and this permission notice shall be included
32
+ in all copies or substantial portions of the Software.
33
+
34
+ If you are caught in a dire situation wherein you only have enough time
35
+ to save one person out of a group, and the Author is a member of that
36
+ group, you must save the Author.
37
+
38
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
39
+ INCLUDING BUT NOT LIMITED TO BLAH BLAH BLAH ISN'T IT FUNNY HOW UPPER-CASE MAKES IT
40
+ SOUND LIKE THE LICENSE IS ANGRY AND SHOUTING AT YOU.
41
+
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/hu ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'hu/cli'
4
+
5
+ Optix.invoke!
6
+
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'hu/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "hu"
8
+ spec.version = Hu::VERSION
9
+ spec.authors = ["moe"]
10
+ spec.email = ["moe@busyloop.net"]
11
+ spec.summary = %q{Heroku Utility.}
12
+ spec.description = %q{Heroku Utility.}
13
+ spec.homepage = "https://github.com/busyloop/hu"
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_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency "optix"
25
+ spec.add_dependency "platform-api"
26
+ spec.add_dependency "powerbar"
27
+ end
@@ -0,0 +1,59 @@
1
+ require 'hu/version'
2
+ require 'optix'
3
+ require 'powerbar'
4
+ require 'yaml'
5
+ require 'platform-api'
6
+
7
+ module Hu
8
+ class Cli < Optix::Cli
9
+ API_TOKEN = ENV['HEROKU_API_TOKEN']
10
+ cli_root do
11
+ text "Hu v#{Hu::VERSION} - Heroku Utility"
12
+ if API_TOKEN.nil?
13
+ text ""
14
+ text "\e[1mWARNING: Environment variable 'HEROKU_API_TOKEN' must be set.\e[0m"
15
+ end
16
+ opt :version, "Print version and exit", :short => :none
17
+ trigger :version do
18
+ puts "Hu v#{Hu::VERSION}"
19
+ end
20
+ filter do
21
+ if API_TOKEN.nil?
22
+ STDERR.puts "\e[0;31;1mERROR: Environment variable 'HEROKU_API_TOKEN' must be set.\e[0m"
23
+ exit 1
24
+ end
25
+ end
26
+ end
27
+
28
+ desc "Export current collaborator mapping"
29
+ opt :format, "yaml|json", :default => 'yaml'
30
+ parent "collab", "Application collaborators"
31
+ def export(cmd, opts, argv)
32
+ #raise Optix::HelpNeeded unless opts.values_at(:capslock, :numlock, :verbose).any?
33
+ data = {}
34
+ pb = PowerBar.new
35
+ app_names = h.app.list.map{|e| e['name']}
36
+ app_names.each_with_index do |app_name,i|
37
+ pb.show :msg => app_name, :total => app_names.length, :done => i
38
+ data[app_name] = { 'collaborators' => [] }
39
+ h.collaborator.list(app_name).map{|e|
40
+ case e['role']
41
+ when 'owner'
42
+ data[app_name]['owner'] = e['user']['email']
43
+ when nil
44
+ data[app_name]['collaborators'] << e['user']['email']
45
+ else
46
+ raise RuntimeError, "Unknown collaborator role: #{e['role']}"
47
+ end
48
+ }
49
+ end
50
+ pb.wipe
51
+ puts data.send("to_#{opts[:format]}".to_sym)
52
+ end
53
+
54
+ def h
55
+ @h ||= PlatformAPI.connect_oauth(API_TOKEN)
56
+ end
57
+
58
+ end
59
+ end
@@ -0,0 +1,3 @@
1
+ module Hu
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - moe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-12-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
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: optix
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: platform-api
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: powerbar
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Heroku Utility.
84
+ email:
85
+ - moe@busyloop.net
86
+ executables:
87
+ - hu
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - .gitignore
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - bin/hu
97
+ - hu.gemspec
98
+ - lib/hu/cli.rb
99
+ - lib/hu/version.rb
100
+ homepage: https://github.com/busyloop/hu
101
+ licenses:
102
+ - MIT
103
+ metadata: {}
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - '>='
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project:
120
+ rubygems_version: 2.0.14
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Heroku Utility.
124
+ test_files: []