Sha256: a9410031a3373a28b973c1bcc2fd68ca52b52c99835ab728a0ac9738b5efbaba

Contents?: true

Size: 693 Bytes

Versions: 1

Compression:

Stored size: 693 Bytes

Contents

# Cocoapods Acknowledgements Filter

A CocoaPods plugin that filters the pods listed in Acknowledgements

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'cocoapods-acknowledgements-filter'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install cocoapods-acknowledgements-filter

## Example Usage

Add to your `Podfile` and configure, the options are:

- `:exclude` a list of excluded spec names

```ruby
plugin 'cocoapods-acknowledgements-filter', :exclude => ['PrivateKit']
```

- `:filter` a block to filter them yourself
```ruby
plugin 'cocoapods-acknowledgements-filter', :filter => Proc.new { |spec|
  not spec =~ /Private/ 
}
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cocoapods-acknowledgements-filter-0.1.0 README.md