[script] add get lic

This commit is contained in:
Travis CI 2016-06-13 07:16:06 -07:00
parent 27dce1cdec
commit 40a4ab00d4
1 changed files with 22 additions and 0 deletions

22
.github/osia_get_lic.rb vendored Normal file
View File

@ -0,0 +1,22 @@
require 'octokit'
require 'awesome_print'
g = ARGV[0]
if g.nil?
puts "Usage: get_lic <repo> \n i.e. get_lic dkhamsing/BrandColors"
exit
end
client = Octokit
begin
r = client.repo g, accept: 'application/vnd.github.drax-preview+json'
ap r
lic = r[:license][:key]
print "Result: "
ap lic
rescue => e
puts "Error: #{e}"
end