Go to file
Ben Balter f67ba15678 limit potential licenses 2014-08-16 14:41:40 -04:00
lib limit potential licenses 2014-08-16 14:41:40 -04:00
script initial commit 2014-08-16 12:39:40 -04:00
test refactor 2014-08-16 14:28:09 -04:00
vendor/choosealicense.com/licenses initial commit 2014-08-16 12:39:40 -04:00
.bowerrc initial commit 2014-08-16 12:39:40 -04:00
.gitignore initial commit 2014-08-16 12:39:40 -04:00
Gemfile initial commit 2014-08-16 12:39:40 -04:00
Gemfile.lock initial commit 2014-08-16 12:39:40 -04:00
LICENSE.md initial commit 2014-08-16 12:39:40 -04:00
README.md refactor 2014-08-16 14:28:09 -04:00
Rakefile initial commit 2014-08-16 12:39:40 -04:00

README.md

Licensee

A Ruby Gem to detect under what license a project is distributed

So you've got an open source project. How do you know under what terms the project is licensed? You could go in to the project folder, look for a file named license.txt (or something similar) and look for keywords like the license title. But what if the license doesn't have a title (like MIT)? What if the text of the license has been changed?

Licensee searches for a project's license file and then compares it to known licenses.

Prior Art

There are a handful of other approaches to this problem, the most notable being LicenseFinder. Most other projects focus on dependencies, package managers, or compliance.