Commit 0028056a authored by Fabio Pelosin's avatar Fabio Pelosin

Add Pod lib command 2

Closes #850
parent a68044eb
...@@ -6,6 +6,16 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides ...@@ -6,6 +6,16 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
###### Enhancements ###### Enhancements
* Added the `pod lib create` subcommand which allows to create a new Pod
adhering to the best practices. The template is still a bit primitive
and we encourage users to provide feedback by submitting patches and issues
to the https://github.com/CocoaPods/CocoaPods.
[#850](https://github.com/CocoaPods/CocoaPods/issues/850)
* Added the `pod lib lint` subcommand which allows to lint the Pod stored
in the working directory (a pod spec in the root is needed).
[#850](https://github.com/CocoaPods/CocoaPods/issues/850)
* The size of the cache used for the git repos is now configurable. For more * The size of the cache used for the git repos is now configurable. For more
detail see detail see
https://github.com/CocoaPods/CocoaPods/blob/master/lib/cocoapods/config.rb#L7-L25 https://github.com/CocoaPods/CocoaPods/blob/master/lib/cocoapods/config.rb#L7-L25
......
...@@ -41,8 +41,8 @@ module Pod ...@@ -41,8 +41,8 @@ module Pod
executable :git executable :git
executable :ruby executable :ruby
TEMPLATE_REPO = "/Users/fabio/Projects/CP/pod-template" TEMPLATE_REPO = "https://github.com/CocoaPods/CocoaPods.git"
TEMPLATE_INFO_URL = "/Users/fabio/Projects/CP/pod-template" TEMPLATE_INFO_URL = "https://github.com/CocoaPods/CocoaPods"
# Clones the template from the remote in the working directory using # Clones the template from the remote in the working directory using
# the name of the Pod. # the name of the Pod.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment