-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_example1.rb
More file actions
29 lines (26 loc) · 1.1 KB
/
_example1.rb
File metadata and controls
29 lines (26 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Copyright 2010 Long Weekend LLC
# Written by paul [a.] t longwwekendmobile.com
# Please read the README file
#
##
## domain_keyword : string
## -----------------------
## A single keyword automatically added to each search. Used to narrow your search
## and reduce noise from unrelated apps in result. For example, we use "Japanese"
## when searching for japanese study apps
##
## keyword_stack : array of strings
## --------------------------------
## Inidivual and/or compound search terms, more terms takes more time per run
## The 'domain_keyword' string is automatically added to each search.
##
## keyword_stack_no_domain_kw : array of strings
## ---------------------------------------------
## Inidivual and/or compound search terms that do not use the auto-included domain_keyword
##
##-------------------------------------------------------------------------------------------
### Example setup ranking apps relating to Japanese study apps
domain_keyword = "japanese"
keyword_stack = ["flash cards", "vocab", "vocabulary", "study app", "learning"]
keyword_stack_no_domain_kw = ["nihongo", "kanji", "hiragana"]