# License Finder [![Build Status](https://secure.travis-ci.org/pivotal/LicenseFinder.png)](http://travis-ci.org/pivotal/LicenseFinder) With bundler it's easy for your project to depend on many gems. This decomposition is nice, but managing licenses becomes difficult. This tool gathers info about the licenses of the gems in your project. ## Installation ===== Add license_finder to your Rails project's Gemfile and `bundle`: ```ruby gem 'license_finder', :git => "https://github.com/pivotal/LicenseFinder.git" ``` Now, initialize license finder: ```sh $ bundle exec rake license:init ``` This will create a `config/license_finder.yml` file that lets you configure license finder. This is where you should add licenses which are allowed on the project, so they will be automatically approved. ## Usage Once you've whitelisted licenses, you can then tell license finder to analyze your Gemfile and generate a list of dependencies that have non-whitelisted licenses: ```sh $ bundle exec rake license:action_items ``` This will write out a dependencies.yml and dependencies.txt file in the root of your project, as well as output a list of unapproved dependencies to the console. It will also return a non-zero exit status if there unapproved dependencies. You could use this in a CI build, for example, to alert you whenever someone adds an unapproved dependency to the project. It will also merge in an existing dependencies.yml file, if one exists (i.e., you've previously run this command and then edited the resulting file). ### Manually approving dependencies Whenever you have a dependency that falls outside of your whitelist, `rake license:action_items` will tell you. If your business decides that this is an acceptable risk, you can manually approve the dependency by finding its section in the `dependencies.yml` file and setting its `approved` attribute to true. For example, lets assume you've only whitelisted the "MIT" license in your `config/license_finder.yml`. You then add the 'awesome_gpl_gem' to your Gemfile, which we'll assume is licensed with the `GPL` license. You then run `rake license_finder:action_items` and see the gem listed in the output: ```txt awesome_gpl_gem 1.0.0, GPL ``` Your business tells you that in this case, it's acceptable to use this gem. You should now update your `dependencies.yml` file, setting the `approved` attribute to `true` for the `awesome_gpl_gem` section: ```yaml - name: awesome_gpl_gem version: 1.0.0 license: GPL approved: true ``` If you rerun `rake license:action_items`, you should no longer see `awesome_gpl_gem` in the output. ## Manually managing Javascript Dependencies License Finder currently has no method for automatically detecting third-party javascript libraries in your application and alerting you to license violations. However, you can manually add javascript dependencies to your `dependencies.yml` file: ```yaml - name: "my_javascript_library" version: "0.0.0" license: "GPL" approved: false ``` You could then update the "approved" attribute to true once you have signoff from your business. License Finder will remember any manually added licenses between successive runs. ## Usage outside Rails As a standalone script: ```sh $ git clone http://github.com/pivotal/LicenseFinder.git license_finder $ cd /path/to/your/project $ /path/to/license_finder/bin/license_finder ``` Optionally add `--with-licenses` to include the full text of the licenses in the output. ## Sample Output File: `config/license_finder.yml`: ```yaml --- whitelist: - MIT - Apache 2.0 ignore_groups: - test - development ``` File: `dependencies.yml`: ```yaml --- - name: "json_pure" version: "1.5.1" license: "other" approved: false - name: "rake" version: "0.8.7" license: "MIT" approved: true ``` File: `dependencies.txt`: json_pure 1.5.1, other rake 0.8.7, MIT File: `bin/license_finder`: ```yaml --- json_pure 1.5.1: dependency_name: json_pure dependency_version: 1.5.1 install_path: /some/path/.rvm/gems/ruby-1.9.2-p180/gems/json_pure-1.5.1 license_files: - file_name: COPYING header_type: other body_type: other disclaimer_of_liability: other - file_name: COPYING-json-jruby header_type: other body_type: other disclaimer_of_liability: other readme_files: - file_name: README mentions_license: true - file_name: README-json-jruby.markdown mentions_license: false --- rake 0.8.7: dependency_name: rake dependency_version: 0.8.7 install_path: /some/path/.rvm/gems/ruby-1.9.2-p180/gems/rake-0.8.7 license_files: - file_name: MIT-LICENSE header_type: other body_type: mit disclaimer_of_liability: "mit: THE AUTHORS OR COPYRIGHT HOLDERS" readme_files: - file_name: README mentions_license: true ``` ## A note to gem authors / maintainers For the good of humanity, please add a license to your gemspec! ```ruby Gem::Specification.new do |s| s.name = "my_great_gem" s.license = "MIT" end ``` And add a `LICENSE` file to your gem that contains your license text.