├── .gitignore ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── RELEASING.md ├── Rakefile ├── cocoapods-check.gemspec ├── lib ├── cocoapods_check.rb ├── cocoapods_plugin.rb └── pod │ └── command │ └── check.rb └── spec └── check_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | Gemfile.lock 3 | .idea 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-check.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/cocoapods-check.gemspec -------------------------------------------------------------------------------- /lib/cocoapods_check.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsCheck 2 | VERSION = '1.1.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/check' 2 | -------------------------------------------------------------------------------- /lib/pod/command/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/lib/pod/command/check.rb -------------------------------------------------------------------------------- /spec/check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-check/HEAD/spec/check_spec.rb --------------------------------------------------------------------------------