Skip to content

Instantly share code, notes, and snippets.

@larryfox
Last active April 25, 2016 20:30
Show Gist options
  • Save larryfox/e2adadd26c7f7bd1393ca7199dc9672d to your computer and use it in GitHub Desktop.
Save larryfox/e2adadd26c7f7bd1393ca7199dc9672d to your computer and use it in GitHub Desktop.
Get gem licenses
File.open('licenses.txt', 'w+') do |io|
Dir.glob('.gem/**/*LICENSE*').map do |filename|
io.write("====================================\n")
io.write("#{filename}\n")
io.write("====================================\n\n")
io.write File.read(filename)
io.write("\n\n\n\n")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment