├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── alexa.gemspec ├── bin ├── console └── setup ├── lib ├── alexa.rb └── alexa │ ├── api │ ├── base.rb │ ├── category_browse.rb │ ├── category_listings.rb │ ├── sites_linking_in.rb │ ├── traffic_history.rb │ └── url_info.rb │ ├── client.rb │ ├── connection.rb │ ├── exceptions.rb │ ├── utils.rb │ └── version.rb └── test ├── api ├── category_browse_test.rb ├── category_listings_test.rb ├── sites_linking_in_test.rb ├── traffic_history_test.rb └── url_info_test.rb ├── cassettes ├── category_browse │ └── card_games.yml ├── category_listings │ └── card_games.yml ├── sites_linking_in │ └── github.yml ├── traffic_history │ └── github.yml ├── unathorized.yml └── url_info │ ├── github-full.yml │ └── github.yml ├── client_test.rb ├── connection_test.rb ├── helper.rb └── utils_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | tmp/ 3 | *.gem 4 | .bundle 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/Rakefile -------------------------------------------------------------------------------- /alexa.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/alexa.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/alexa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa.rb -------------------------------------------------------------------------------- /lib/alexa/api/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/base.rb -------------------------------------------------------------------------------- /lib/alexa/api/category_browse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/category_browse.rb -------------------------------------------------------------------------------- /lib/alexa/api/category_listings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/category_listings.rb -------------------------------------------------------------------------------- /lib/alexa/api/sites_linking_in.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/sites_linking_in.rb -------------------------------------------------------------------------------- /lib/alexa/api/traffic_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/traffic_history.rb -------------------------------------------------------------------------------- /lib/alexa/api/url_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/api/url_info.rb -------------------------------------------------------------------------------- /lib/alexa/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/client.rb -------------------------------------------------------------------------------- /lib/alexa/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/connection.rb -------------------------------------------------------------------------------- /lib/alexa/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/exceptions.rb -------------------------------------------------------------------------------- /lib/alexa/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/lib/alexa/utils.rb -------------------------------------------------------------------------------- /lib/alexa/version.rb: -------------------------------------------------------------------------------- 1 | module Alexa 2 | VERSION = "0.7.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/api/category_browse_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/api/category_browse_test.rb -------------------------------------------------------------------------------- /test/api/category_listings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/api/category_listings_test.rb -------------------------------------------------------------------------------- /test/api/sites_linking_in_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/api/sites_linking_in_test.rb -------------------------------------------------------------------------------- /test/api/traffic_history_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/api/traffic_history_test.rb -------------------------------------------------------------------------------- /test/api/url_info_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/api/url_info_test.rb -------------------------------------------------------------------------------- /test/cassettes/category_browse/card_games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/category_browse/card_games.yml -------------------------------------------------------------------------------- /test/cassettes/category_listings/card_games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/category_listings/card_games.yml -------------------------------------------------------------------------------- /test/cassettes/sites_linking_in/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/sites_linking_in/github.yml -------------------------------------------------------------------------------- /test/cassettes/traffic_history/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/traffic_history/github.yml -------------------------------------------------------------------------------- /test/cassettes/unathorized.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/unathorized.yml -------------------------------------------------------------------------------- /test/cassettes/url_info/github-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/url_info/github-full.yml -------------------------------------------------------------------------------- /test/cassettes/url_info/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/cassettes/url_info/github.yml -------------------------------------------------------------------------------- /test/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/client_test.rb -------------------------------------------------------------------------------- /test/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/connection_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/utils_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgoth/alexa/HEAD/test/utils_test.rb --------------------------------------------------------------------------------