No release in over 3 years
Lint the licenses for iOS projects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

ADLicenselint

The purpose of this gem is to automatically generate a summary of the licenses for the pods used in an iOS project.

Example

bundle exec ad_licenselint -f term -p /path/to/Podfile -a

+-------------------+----------------------------+-----------------------------------------------+
| Pod               | License                    | Source                                        |
+-------------------+----------------------------+-----------------------------------------------+
| Alamofire         | MIT                        | https://github.com/Alamofire/Alamofire        |
| Firebase          | Apache                     | https://github.com/firebase/firebase-ios-sdk  |
| ObjectivePGP      | BSD for non-commercial use | https://github.com/krzyzanowskim/ObjectivePGP |
| SwiftGen          | MIT                        | https://github.com/SwiftGen/SwiftGen          |
| SwiftLint         | MIT                        | https://github.com/realm/SwiftLint            |
+-------------------+----------------------------+-----------------------------------------------+

Installation

Add this line to your Gemfile:

gem 'ad_licenselint'

And then execute:

bundle install

You can also install it globally running:

gem install ad_licenselint

Usage

Command line

cd path/to/Podfile
bundle exec ad_licenselint

# Alternatively, use the -p option
bundle exec ad_licenselint -p path/to/Podfile

+-------------------+----------------------------+-----------------------------------------------+
| Pod               | License                    | Source                                        |
+-------------------+----------------------------+-----------------------------------------------+
| ObjectivePGP      | BSD for non-commercial use | https://github.com/krzyzanowskim/ObjectivePGP |
+-------------------+----------------------------+-----------------------------------------------+

This will output the licenses that are not free to use in your project. By default, MIT, Apache or BSD are considered valid.

If you want to see licenses that are valid anyway, run:

bundle exec ad_licenselint -a

+-------------------+----------------------------+-----------------------------------------------+
| Pod               | License                    | Source                                        |
+-------------------+----------------------------+-----------------------------------------------+
| Alamofire         | MIT                        | https://github.com/Alamofire/Alamofire        |
| Firebase          | Apache                     | https://github.com/firebase/firebase-ios-sdk  |
| ObjectivePGP      | BSD for non-commercial use | https://github.com/krzyzanowskim/ObjectivePGP |
| SwiftGen          | MIT                        | https://github.com/SwiftGen/SwiftGen          |
| SwiftLint         | MIT                        | https://github.com/realm/SwiftLint            |
+-------------------+----------------------------+-----------------------------------------------+

By default the output format is set to term. You can use md to generate a markdown output:

bundle exec ad_licenselint -f md

The output becomes:


Pod License Source
ObjectivePGP BSD for non-commercial use https://github.com/krzyzanowskim/ObjectivePGP
Licenses

ObjectivePGP

The ObjectivePGP stays under a dual license:

====================================================================
Free for non-commercial use:

Copyright (C) 2014-2017, Marcin Krzyżanowski All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

- Non-commercial use

- Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

- Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

====================================================================
Paid for commercial use:

Commercial-use license to use in commercial products. Please contact me via email (marcin@krzyzanowskim.com) for details.

If you want to see the warnings for a subset of pods (and not the whole pod list from the Podfile), use the -o option:

bundle exec ad_licenselint -o Alamofire -a

+-------------------+---------+----------------------------------------------------+
| Pod               | License | Source                                             |
+-------------------+---------+----------------------------------------------------+
| Alamofire         | MIT     | https://github.com/Alamofire/Alamofire             |
+-------------------+---------+----------------------------------------------------+
bundle exec ad_licenselint -o ObjectivePGP

+-------------------+----------------------------+-----------------------------------------------+
| Pod               | License                    | Source                                        |
+-------------------+----------------------------+-----------------------------------------------+
| ObjectivePGP      | BSD for non-commercial use | https://github.com/krzyzanowskim/ObjectivePGP |
+-------------------+----------------------------+-----------------------------------------------+

If you want to see all the options available, display help:

bundle exec ad_licenselint -h

Allow list

You may want to hide warnings for pods you know are valid (for instance private pods that have a commercial license). For this purpose, you can create a file .ad_licenselint.yml next to your Podfile that looks like this:

allow:
- ObjectivePGP
- SomeOtherPod

Next, when you will run bundle exec ad_licenselint, ObjectivePGP will not emit a warning anymore.

Ruby

If you want to use the the gem in your ruby scripts, you can generate a report like so:

# create a runner with optional options
runner = ADLicenseLint::Runner.new({
  format: ADLicenseLint::Constant::MARKDOWN_FORMAT_OPTION,
  path: "/path/to/Podfile",
  all: false
})

# create a report
report = runner.create_report

# print the formatted result
puts runner.format(report)

Tests

Run make tests to run the tests.

How to contribute

  1. After all your changes are reviewed and merged
  2. Create a release branch
  3. Update the version in field s.version from file ad_licenselint.gemspec
  4. Execute make publish

You may need to configure your account at step 4. if you've never pushed any gem. You can find all the informations you need on the official documentation.

License

The gem is available as open source under the terms of the MIT license