cocoapods-sorted-search 0.2.0 → 0.2.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/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/cocoapods-sorted-search.gemspec +1 -1
- data/lib/sorted_search/providers/github_provider.rb +1 -1
- metadata +1 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5290a8eb81c4fc6961a80220503bab6241483601
|
|
4
|
+
data.tar.gz: f1642838bca99d27a75b02e25fe0eedfbe7ffa54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 167fccfa118e195d29da10be686ad79bef41c7dfd84d9cfd9398c1674d786149d2b1ecbc53bf7bb4b660bb3c92e47f870ea77d15d070ed33976acdbef65528b9
|
|
7
|
+
data.tar.gz: e45e3e6958ae1d0017fc82b807e96a1654ce9b0c6ad7328401914bc3e4aa1014d03ddba4c13eef79b12bb51170416c9012e48252db0cd34395ca70b4f89c45a6
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ CocoaPods plugin which adds a `sort` subcommand for `pod search` to sort search
|
|
|
24
24
|
|
|
25
25
|
Plugin uses GitHub anonymous requests by default, that have rate limit of 60 requests per hour.
|
|
26
26
|
|
|
27
|
-
Feed plugin with GitHub OAuth token, and raise the limit to **5000** requests per hour! Not only that, if provided with token, plugin starts to fetch GitHub info in parallel, making sorting incredibly fast
|
|
27
|
+
Feed plugin with GitHub OAuth token, and raise the limit to **5000** requests per hour! Not only that, if provided with token, plugin starts to fetch GitHub info in parallel, making sorting **incredibly fast**.
|
|
28
28
|
|
|
29
29
|
Steps for token configuration:
|
|
30
30
|
1. Go to GitHub settings -> Applications -> Personal Access Tokens
|
|
@@ -41,3 +41,7 @@ Your token will be stored in OS X Keychain and used automatically for fetching G
|
|
|
41
41
|
|
|
42
42
|
- CocoaPods 0.28 and higher
|
|
43
43
|
- Ruby 1.9.3 and higher
|
|
44
|
+
|
|
45
|
+
## Troubleshooting
|
|
46
|
+
|
|
47
|
+
First of, read [troubleshooting](https://github.com/DenHeadless/cocoapods-sorted-search/wiki/Troubleshooting) wiki page. If something still not right, post issue on GitHub to let me know!
|
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "cocoapods-sorted-search"
|
|
8
|
-
spec.version = '0.2.
|
|
8
|
+
spec.version = '0.2.1'
|
|
9
9
|
spec.authors = ["Denys Telezhkin"]
|
|
10
10
|
spec.email = ["strangervir@gmail.com"]
|
|
11
11
|
spec.summary = %q{CocoaPods plugin for sorted searching amongst CocoaPods.}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-sorted-search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Denys Telezhkin
|
|
@@ -202,4 +202,3 @@ test_files:
|
|
|
202
202
|
- spec/unit/pod/command/github_setup_spec.rb
|
|
203
203
|
- spec/unit/pod/command/sorted_search_spec.rb
|
|
204
204
|
- spec/unit/sorted_search/printers/printer_spec.rb
|
|
205
|
-
has_rdoc:
|