├── .gitignore ├── .rubocop.yml ├── .rubocop_cocoapods.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── cocoapods-plugins.gemspec ├── lib ├── cocoapods_plugin.rb ├── cocoapods_plugins.rb └── pod │ └── command │ ├── gem_helper.rb │ ├── gem_index_cache.rb │ ├── plugins.rb │ ├── plugins │ ├── create.rb │ ├── installed.rb │ ├── list.rb │ ├── publish.rb │ └── search.rb │ └── plugins_helper.rb ├── plugins.json └── spec ├── command ├── gem_helper_spec.rb ├── gem_index_cache_spec.rb ├── plugins │ ├── create_spec.rb │ ├── installed_spec.rb │ ├── list_spec.rb │ ├── publish_spec.rb │ └── search_spec.rb ├── plugins_helper_spec.rb └── plugins_spec.rb ├── fixtures ├── cocoapods-foo1.gemspec ├── cocoapods-foo2.gemspec ├── plugins.json └── unprefixed.gemspec └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: 2 | - .rubocop_cocoapods.yml 3 | 4 | 5 | -------------------------------------------------------------------------------- /.rubocop_cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/.rubocop_cocoapods.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-plugins.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/cocoapods-plugins.gemspec -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/plugins' 2 | -------------------------------------------------------------------------------- /lib/cocoapods_plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/cocoapods_plugins.rb -------------------------------------------------------------------------------- /lib/pod/command/gem_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/gem_helper.rb -------------------------------------------------------------------------------- /lib/pod/command/gem_index_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/gem_index_cache.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins/create.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins/installed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins/installed.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins/list.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins/publish.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins/search.rb -------------------------------------------------------------------------------- /lib/pod/command/plugins_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/lib/pod/command/plugins_helper.rb -------------------------------------------------------------------------------- /plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/plugins.json -------------------------------------------------------------------------------- /spec/command/gem_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/gem_helper_spec.rb -------------------------------------------------------------------------------- /spec/command/gem_index_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/gem_index_cache_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins/create_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins/installed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins/installed_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins/list_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins/publish_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins/publish_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins/search_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins_helper_spec.rb -------------------------------------------------------------------------------- /spec/command/plugins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/command/plugins_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/cocoapods-foo1.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/fixtures/cocoapods-foo1.gemspec -------------------------------------------------------------------------------- /spec/fixtures/cocoapods-foo2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/fixtures/cocoapods-foo2.gemspec -------------------------------------------------------------------------------- /spec/fixtures/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/fixtures/plugins.json -------------------------------------------------------------------------------- /spec/fixtures/unprefixed.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/fixtures/unprefixed.gemspec -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-plugins/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------