cocoapods-thumbs 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -1
- data/lib/cocoapods-thumbs/gem_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2841bdb73d220e09ac2ae78022dc2744e6e2453
|
|
4
|
+
data.tar.gz: b98a2333dcb59c6951d55dec4189c9ed534bab03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d195a8a17f50d158136faa1041c16d3dda98bbbe6476d8c434e4cc4e5d1453aacfd62acb700e86a4dde762116bc27d5949e3b594ff7f8887ede8d7c582ab5f6
|
|
7
|
+
data.tar.gz: 377a7fd2d666a9577905d84b72ee0168c21df87e8b6412dc06cfed4cad370a00d91f59c2b1e8bf2f8552e48d8a4da25be7a78acbd9111b5be85da9316e796863
|
data/README.md
CHANGED
|
@@ -24,6 +24,10 @@ While more elaborate servers providing means for users to vote with a UI can be
|
|
|
24
24
|
Set the server URL by calling:
|
|
25
25
|
|
|
26
26
|
$ pod thumbs server URL
|
|
27
|
+
|
|
28
|
+
example:
|
|
29
|
+
|
|
30
|
+
$ pod thumbs server https://raw.githubusercontent.com/quadion/thumbs/master/list.json
|
|
27
31
|
|
|
28
32
|
### Checking a full Podfile
|
|
29
33
|
|
|
@@ -37,8 +41,14 @@ To check a single Podspec run:
|
|
|
37
41
|
|
|
38
42
|
$ pod thumbs NAME REQUIREMENT
|
|
39
43
|
|
|
40
|
-
Where
|
|
44
|
+
Where `REQUIREMENT` is a version requirement with the same supported syntax as in a Podfile.
|
|
41
45
|
|
|
42
46
|
By default, this will use a platform os iOS 8.3. If you want to override the platform and version you can add:
|
|
43
47
|
|
|
44
48
|
$ pod thumbs NAME REQUIREMENT --platform=osx --version=10.10
|
|
49
|
+
|
|
50
|
+
Examples:
|
|
51
|
+
|
|
52
|
+
$ pod thumbs AFNetworking
|
|
53
|
+
$ pod thumbs AFNetworking '~> 2.5'
|
|
54
|
+
$ pod thumbs AFNetworking --platform=ios --version=8.3
|