-
-
Save pacoguzman/168379 to your computer and use it in GitHub Desktop.
This file contains 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
// Tip: You can go to any result in preview by pressiong ctrl+alt+[result number] | |
CmdUtils.makeSearchCommand({ | |
name: ["rails","rails-search"], | |
homepage: "http://rafagarcia.net/", | |
author: { name: "Rafa Garcia", email: "[email protected]"}, | |
license: "GPL", | |
url: "http://apidock.com/rails/search/?query={QUERY}", | |
description: _("Searches Ruby on Rails terms in Apidock.com"), | |
icon: "http://apidock.com/images/rails_icon_16.png", | |
parser: { | |
container: "div.result", | |
title: "span.result_title", | |
maxResults: 8 | |
}, | |
}); | |
CmdUtils.makeSearchCommand({ | |
name: ["ruby","ruby-search"], | |
homepage: "http://rafagarcia.net/", | |
author: { name: "Rafa Garcia", email: "[email protected]"}, | |
license: "GPL", | |
url: "http://apidock.com/ruby/search/?query={QUERY}", | |
description: _("Searches Ruby terms in Apidock.com"), | |
icon: "http://apidock.com/images/ruby_icon_16.png", | |
parser: { | |
container: "div.result", | |
title: "span.result_title", | |
maxResults: 8 | |
}, | |
}); | |
CmdUtils.makeSearchCommand({ | |
name: ["rspec","rspec-search"], | |
homepage: "http://rafagarcia.net/", | |
author: { name: "Rafa Garcia", email: "[email protected]"}, | |
license: "GPL", | |
url: "http://apidock.com/rspec/search/?query={QUERY}", | |
description: _("Searches RSpec terms in Apidock.com"), | |
icon: "http://apidock.com/images/rspec_icon_16.png", | |
parser: { | |
container: "div.result", | |
title: "span.result_title", | |
maxResults: 8 | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment