https://github.com/orta/cocoapods-no-dev-schemes
Removes all the CocoaPods Shared Schemes from Developer Pods
https://github.com/orta/cocoapods-no-dev-schemes
Last synced: about 1 year ago
JSON representation
Removes all the CocoaPods Shared Schemes from Developer Pods
- Host: GitHub
- URL: https://github.com/orta/cocoapods-no-dev-schemes
- Owner: orta
- License: mit
- Created: 2015-09-23T10:01:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-20T17:32:53.000Z (over 10 years ago)
- Last Synced: 2025-04-14T06:49:47.889Z (about 1 year ago)
- Language: Ruby
- Size: 126 KB
- Stars: 27
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CocoaPods No-Dev-Schemes
Is it annoying that `pod install`ing with development pods changes your target? Well now they won't be created for you anymore. There are good reasons for [doing it](https://github.com/CocoaPods/CocoaPods/pull/3600), but not when working with an app.
Use a Gemfile. [Here's a guide](http://guides.cocoapods.org/using/a-gemfile.html)
Gemfile:
```
gem "cocoapods"
gem "cocoapods-no-dev-schemes"
```
Podfile:
```
plugin "cocoapods-no-dev-schemes"
[...]
```