README.markdown in license_finder-0.2.0 vs README.markdown in license_finder-0.3.0

- old
+ new

@@ -8,19 +8,22 @@ For a Rails project add license_finder to your Gemfile: gem 'license_finder', :git => "https://github.com/pivotal/LicenseFinder.git" Run 'rake license:init' -This will create a config/license_finder.yml file that lets you configure license finder. +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. Run 'rake license:generate_dependencies' This will write out a dependencies.yml and dependencies.txt file in the root of your project. It will also merge in an existing dependencies.yml file, if one exists. Run 'rake license:action_items' This will output a list of unapproved dependencies to the console +Run 'rake license:action_items:ok' +This will return a non-zero exit status if there are unapproved dependencies. Great for CI. + As a standalone script: cd ~ git clone http://github.com/pivotal/LicenseFinder.git license_finder cd your/project ~/license_finder/bin/license_finder @@ -79,6 +82,16 @@ header_type: other body_type: mit disclaimer_of_liability: "mit: THE AUTHORS OR COPYRIGHT HOLDERS" readme_files: - file_name: README - mentions_license: true + mentions_license: true + +Gem Maintainers +=============== + +Please add a license to your gemspec! + + Gem::Specification.new do |s| + s.name = "my_great_gem" + s.license = "MIT" + end \ No newline at end of file