Last active
March 17, 2019 20:23
-
-
Save factoryhr/7d04d390f3cf60a84b4696eb2c40667b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#BEFORE | |
#Specify the location from where the source should be retrieved. | |
#spec.source = { :git => "http://EXAMPLE/Switch.git", :tag => "master" } | |
#source for local lib development. | |
spec.source = { :path => "Sources/"} | |
#AFTER | |
#Specify the location from where the source should be retrieved. | |
spec.source = { :git => "[YOUR_GIT_URL]", :tag => "[YOUR_TAG]" } | |
#source for local lib development. | |
#spec.source = { :path => "Sources/"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment