Inside the Example
directory you will find a project holding the tests for IBentifiers. To run them:
- Clone the repository
- Enter the
Example
directory - Open the
IBentifiers.xcworkspace
file in Xcode 8.0 - Select the
IBentifiers-Example
target in the target selection dropdown near theStop
button - Press
⌘U
or clickTest
from theProduct
menu
- iOS 9.0+
- Xcode 8.0+
IBentifiers is available through CocoaPods, a dependency manager for Cocoa projects. CocoaPods can be downloaded as a stand-alone app and can also be installed through RubyGems:
$ gem install cocoapods
To integrate IBentifiers into your Xcode project using CocoaPods, specify it in your Podfile
:
target '<target_name>' do
pod 'IBentifiers'
end
Then, install your dependencies through the CocoaPods app or by running the following command in the same directory as your Podfile
:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following commands:
$ brew update
$ brew install carthage
To integrate IBentifiers into your Xcode project using Carthage, specify it in your Cartfile
:
github "fellipecaetano/IBentifiers"
Run carthage update
to build the framework and drag the built IBentifiers.framework
into your Xcode project.
Fellipe Caetano, [email protected].
IBentifiers is available under the MIT license. See the LICENSE file for more info.