├── .github └── FUNDING.yml ├── .gitignore ├── .irbrc ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── README.rdoc ├── Rakefile ├── bin └── curlyq ├── curlyq.gemspec ├── curlyq.rdoc ├── lib ├── curly.rb └── curly │ ├── array.rb │ ├── curl.rb │ ├── curl │ ├── html.rb │ └── json.rb │ ├── hash.rb │ ├── numeric.rb │ ├── string.rb │ └── version.rb ├── src └── _README.md └── test ├── curlyq_extract_test.rb ├── curlyq_headlinks_test.rb ├── curlyq_html_test.rb ├── curlyq_images_test.rb ├── curlyq_json_test.rb ├── curlyq_links_test.rb ├── curlyq_scrape_test.rb ├── curlyq_tags_test.rb ├── default_test.rb ├── helpers ├── curlyq-helpers.rb ├── fake_std_out.rb └── threaded_tests.rb └── test_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | *.bak 3 | -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/.irbrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/README.md -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/curlyq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/bin/curlyq -------------------------------------------------------------------------------- /curlyq.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/curlyq.gemspec -------------------------------------------------------------------------------- /curlyq.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/curlyq.rdoc -------------------------------------------------------------------------------- /lib/curly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly.rb -------------------------------------------------------------------------------- /lib/curly/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/array.rb -------------------------------------------------------------------------------- /lib/curly/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/curl.rb -------------------------------------------------------------------------------- /lib/curly/curl/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/curl/html.rb -------------------------------------------------------------------------------- /lib/curly/curl/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/curl/json.rb -------------------------------------------------------------------------------- /lib/curly/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/hash.rb -------------------------------------------------------------------------------- /lib/curly/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/numeric.rb -------------------------------------------------------------------------------- /lib/curly/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/string.rb -------------------------------------------------------------------------------- /lib/curly/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/lib/curly/version.rb -------------------------------------------------------------------------------- /src/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/src/_README.md -------------------------------------------------------------------------------- /test/curlyq_extract_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_extract_test.rb -------------------------------------------------------------------------------- /test/curlyq_headlinks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_headlinks_test.rb -------------------------------------------------------------------------------- /test/curlyq_html_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_html_test.rb -------------------------------------------------------------------------------- /test/curlyq_images_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_images_test.rb -------------------------------------------------------------------------------- /test/curlyq_json_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_json_test.rb -------------------------------------------------------------------------------- /test/curlyq_links_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_links_test.rb -------------------------------------------------------------------------------- /test/curlyq_scrape_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_scrape_test.rb -------------------------------------------------------------------------------- /test/curlyq_tags_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/curlyq_tags_test.rb -------------------------------------------------------------------------------- /test/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/default_test.rb -------------------------------------------------------------------------------- /test/helpers/curlyq-helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/helpers/curlyq-helpers.rb -------------------------------------------------------------------------------- /test/helpers/fake_std_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/helpers/fake_std_out.rb -------------------------------------------------------------------------------- /test/helpers/threaded_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/helpers/threaded_tests.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/curlyq/HEAD/test/test_helper.rb --------------------------------------------------------------------------------