Sha256: 0b3332b4150ea896c7e3841d7e3a57d5c5b10776b2eed8d769965c74d8071893
Contents?: true
Size: 698 Bytes
Versions: 1
Compression:
Stored size: 698 Bytes
Contents
Feature: rake license:action_items As a user I want a rake task "license:action_items" that lists any dependencies with licenses that fall outside of my whitelist So that I know the limitations of distributing my application Scenario: Application with non-free dependency Given I have a rails application with license finder And my rails app depends on a gem "gpl_licensed_gem" licensed with "GPL" And my rails app depends on a gem "mit_licensed_gem" licensed with "MIT" And I whitelist the "MIT" license When I run "bundle exec rake license:action_items" Then I should see "gpl_licensed_gem" in its output And I should not see "mit_licensed_gem" in its output
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
license_finder-0.4.5 | features/rake_tasks/action_items.feature |