├── .gitignore ├── Gemfile ├── README.md ├── api_keys.config ├── lib ├── config.rb ├── environment.rb ├── helper.rb └── output.rb ├── modules ├── bing.rb └── helper.rb ├── pspider.rb └── spec ├── lib ├── config_spec.rb └── helper_spec.rb ├── modules └── helper_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/README.md -------------------------------------------------------------------------------- /api_keys.config: -------------------------------------------------------------------------------- 1 | { 2 | "BING": "YOUR_API_KEY_GOES_HERE" 3 | } -------------------------------------------------------------------------------- /lib/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/lib/config.rb -------------------------------------------------------------------------------- /lib/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/lib/environment.rb -------------------------------------------------------------------------------- /lib/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/lib/helper.rb -------------------------------------------------------------------------------- /lib/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/lib/output.rb -------------------------------------------------------------------------------- /modules/bing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/modules/bing.rb -------------------------------------------------------------------------------- /modules/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/modules/helper.rb -------------------------------------------------------------------------------- /pspider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/pspider.rb -------------------------------------------------------------------------------- /spec/lib/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/spec/lib/config_spec.rb -------------------------------------------------------------------------------- /spec/lib/helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/spec/lib/helper_spec.rb -------------------------------------------------------------------------------- /spec/modules/helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/spec/modules/helper_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kissthink/passive-spider/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------