https://github.com/orta/cocoapods-always-be-bundleing
A CocoaPods Plugin that stops
https://github.com/orta/cocoapods-always-be-bundleing
Last synced: 4 months ago
JSON representation
A CocoaPods Plugin that stops
- Host: GitHub
- URL: https://github.com/orta/cocoapods-always-be-bundleing
- Owner: orta
- License: mit
- Created: 2016-02-16T21:17:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-16T22:02:47.000Z (over 10 years ago)
- Last Synced: 2025-11-30T12:12:39.465Z (7 months ago)
- Language: Ruby
- Size: 7.81 KB
- Stars: 25
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# cocoapods-always-be-bundleing
Do you use CocoaPods on a team? Chances are you want to make sure that everyone is using the same version of CocoaPods. The answer here is to [use a Gemfile](https://guides.cocoapods.org/using/a-gemfile.html). This plugin, once installed will make sure that you use a Gemfile every time you do a `pod install`.
The alternative is to the use [the CocoaPods.app](http://cocoapods.org/app).
## Installation
$ gem install cocoapods-always-be-bundleing
### Alternative
If you want to make it specific to a Podfile, add this to the top of your Podfile:
```ruby
"Please run `pod install` with bundle exec instead." unless defined?(Bundler)
```
No need for the plugin, this is more for keeping it consistent across all Podfiles.