A Ruby Gem to detect under what license a project is distributed.
- You've got an open source project. How do you know what you can and can't do with the software?
- You've got a bunch of open source projects, how do you know what their licenses are?
- You've got a project with a license file, but which license is it? Has it been modified?
Licensee automates the process of reading LICENSE files and compares their contents to known licenses using several strategies (which we call "Matchers"). It attempts to determine a project's license in the following order:
- If the license file has an explicit copyright notice, and nothing more (e.g.,
Copyright (c) 2015 Ben Balter), we'll assume the author intends to retain all rights, and thus the project isn't licensed. - If the license is an exact match to a known license. If we strip away whitespace and copyright notice, we might get lucky, and direct string comparison in Ruby is cheap.
- If we still can't match the license, we use a fancy math thing called the Sørensen–Dice coefficient, which is really good at calculating the similarity between two strings. By calculating the percent changed from the known license to the license file, you can tell, e.g., that a given license is 95% similar to the MIT license, that 5% likely representing legally insignificant changes to the license text.
Special thanks to @vmg for his Git and algorithmic prowess.
To use the latest released gem from RubyGems:
gem install licensee
To use licensee programmatically in your own Ruby project, add gem 'licensee' to your project's Gemfile.
To run licensee directly from source:
gem install bundler
bundle install
bundle exec bin/licensee
On Windows, the last line needs to include the Ruby interpreter:
bundle exec ruby bin\licensee
By default, licensee scans projects using the filesystem. If you want to scan bare Git repositories or repositories without a working tree (e.g., on a Git server), install the rugged gem, which provides Ruby bindings for libgit2:
gem install rugged
Or add it to your Gemfile alongside licensee:
gem 'rugged'When rugged is available, Licensee.project will use it automatically. If rugged is not installed, licensee falls back to filesystem-based scanning transparently.
Note that rugged is a native extension and requires cmake and openssl to build. On most systems these are available via a package manager (e.g., apt install cmake libssl-dev or brew install cmake openssl).
Licensee also comes with a Dockerfile if you prefer to run Licensee within a Docker container:
git clone https://github.com/licensee/licensee && cd licenseedocker build . --tag licenseedocker run licensee [COMMAND](see command line usage)
See the docs folder for more information. You may be interested in:
- Instructions for using Licensee
- Customizing Licensee's behavior
- Contributing to Licensee (and development instructions)
- More information about what Licensee looks at (or doesn't, and why)
This project conforms to semver. As a result of this policy, you can (and should) specify a dependency on this gem using the Pessimistic Version Constraint with two digits of precision. For example:
spec.add_dependency 'licensee', '~> 1.0'This means your project is compatible with licensee 1.0 up until 2.0. You can also set a higher minimum version:
spec.add_dependency 'licensee', '~> 1.1'