cocoapods-sorted-search 0.2.2 → 0.2.3
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 +6 -0
- data/cocoapods-sorted-search.gemspec +1 -1
- data/lib/sorted_search/printers/github_printer.rb +1 -0
- data/lib/sorted_search/printers/pods_printer.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3097acfd47402f9b89311d0536667730150e437
|
4
|
+
data.tar.gz: d95de16593b0e8944e134ba3c586422b7d19d299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d36a73d6cc97d9a58051c99ec6172e796975835b19f68771e492c869a14bd13135689c9a1fd80fe0d99b9142c6aa505e55270a6b47fa1a9ca132c3e87b475ef8
|
7
|
+
data.tar.gz: 11f8a4f76a4d8378e4f98542640eeefe08c66652b85ecb25a9a96a5c0291e98cb56589e0deec2e318cb1933999f43f0817ebdcc3836fbdfd16d354145e4b9988
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -32,6 +32,12 @@ CocoaPods plugin which adds a `sort` subcommand for `pod search` to sort search
|
|
32
32
|
3. Run ``` pod setup github --token=MyToken ```
|
33
33
|
|
34
34
|
Your token will be stored in OS X Keychain and used automatically for fetching GitHub info for repositories.
|
35
|
+
|
36
|
+
## Original sort parameters
|
37
|
+
|
38
|
+
Original sort parameters are supported too! So if you want to go crazy, and search for all Ruby stuff, that exists on iOS, you can do stuff like this:
|
39
|
+
|
40
|
+
pod search --ios --full sort Ruby
|
35
41
|
|
36
42
|
## Example
|
37
43
|
|
@@ -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.3'
|
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.}
|
@@ -30,6 +30,7 @@ module SortedSearch
|
|
30
30
|
|
31
31
|
Pod::UI.puts_indented pod.summary
|
32
32
|
Pod::UI.puts_indented "pod '#{pod.name}', '~> #{pod.version}'"
|
33
|
+
Pod::UI.puts_indented pod.homepage
|
33
34
|
Pod::UI.puts_indented stars.yellow + forks.yellow
|
34
35
|
Pod::UI.puts_indented commit.yellow
|
35
36
|
end
|
@@ -17,6 +17,7 @@ module SortedSearch
|
|
17
17
|
|
18
18
|
Pod::UI.puts_indented pod.summary
|
19
19
|
Pod::UI.puts_indented "pod '#{pod.name}', '~> #{pod.version}'"
|
20
|
+
Pod::UI.puts_indented pod.homepage
|
20
21
|
Pod::UI.puts_indented stars.yellow + forks.yellow
|
21
22
|
Pod::UI.puts_indented commit.yellow
|
22
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denys Telezhkin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|