Created
March 21, 2017 21:07
-
-
Save Fryguy/105255eb47fc78560ae26dd16cad8462 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'licensee' | |
require 'active_support/core_ext/object/try' | |
licenses = `bundle list --paths`.split.collect do |gem_path| | |
[File.basename(gem_path), Licensee.license(gem_path).try(:key)] | |
end | |
require 'more_core_extensions/core_ext/array/tableize' | |
puts licenses.unshift(["gem", "license"]).tableize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment