-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
76 additions
and
34 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
node_modules/ | ||
*.tgz | ||
*.rb |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ all: test | |
package: | ||
npm pack | ||
|
||
oobt: | ||
oobt: package | ||
rm -rf /oobt/tmp | ||
cp -R oobt /tmp | ||
cd /tmp/oobt ; \ | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class BaiduSearch extends search.SerpApiSearch { | ||
class BaiduSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "baidu") | ||
} | ||
} | ||
|
||
module.exports.BaiduSearch = BaiduSearch | ||
module.exports = BaiduSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class BingSearch extends search.SerpApiSearch { | ||
class BingSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "bing") | ||
} | ||
} | ||
|
||
module.exports.BingSearch = BingSearch | ||
module.exports = BingSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class EbaySearch extends search.SerpApiSearch { | ||
class EbaySearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "ebay") | ||
} | ||
} | ||
|
||
module.exports.EbaySearch = EbaySearch | ||
module.exports = EbaySearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class GoogleSearch extends search.SerpApiSearch { | ||
class GoogleSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "google") | ||
} | ||
} | ||
|
||
module.exports.GoogleSearch = GoogleSearch | ||
module.exports = GoogleSearch |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class WalmartSearch extends search.SerpApiSearch { | ||
class WalmartSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "walmart") | ||
} | ||
} | ||
|
||
module.exports.WalmartSearch = WalmartSearch | ||
module.exports = WalmartSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class YahooSearch extends search.SerpApiSearch { | ||
class YahooSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "yahoo") | ||
} | ||
} | ||
|
||
module.exports.YahooSearch = YahooSearch | ||
module.exports = YahooSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class YandexSearch extends search.SerpApiSearch { | ||
class YandexSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "yandex") | ||
} | ||
} | ||
|
||
module.exports.YandexSearch = YandexSearch | ||
module.exports = YandexSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
const search = require('./SerpApiSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
|
||
class YoutubeSearch extends search.SerpApiSearch { | ||
class YoutubeSearch extends SerpApiSearch { | ||
|
||
constructor(api_key) { | ||
super(api_key, "youtube") | ||
} | ||
} | ||
|
||
module.exports.YoutubeSearch = YoutubeSearch | ||
module.exports = YoutubeSearch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
'use strict' | ||
|
||
const BaiduSearch = require('./BaiduSearch') | ||
const BingSearch = require('./BingSearch') | ||
const EbaySearch = require('./EbaySearch') | ||
const GoogleSearch = require('./GoogleSearch') | ||
const SerpApiSearch = require('./SerpApiSearch') | ||
const WalmartSearch = require('./WalmartSearch') | ||
const YahooSearch = require('./YahooSearch') | ||
const YandexSearch = require('./YandexSearch') | ||
const YoutubeSearch = require('./YoutubeSearch') | ||
|
||
module.exports = { | ||
SerpApiSearch, | ||
BaiduSearch, | ||
BingSearch, | ||
EbaySearch, | ||
GoogleSearch, | ||
WalmartSearch, | ||
YahooSearch, | ||
YandexSearch, | ||
YoutubeSearch, | ||
} |
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
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