├── .gitignore ├── README.rdoc ├── image_handler.rb └── main.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store* 2 | /downloads* -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslafa/500px-favs-ruby/HEAD/README.rdoc -------------------------------------------------------------------------------- /image_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslafa/500px-favs-ruby/HEAD/image_handler.rb -------------------------------------------------------------------------------- /main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslafa/500px-favs-ruby/HEAD/main.rb --------------------------------------------------------------------------------