├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── .credo.exs ├── config.exs ├── dev.exs └── test.exs ├── doc ├── .build ├── 404.html ├── EyeDrops.Commands.html ├── EyeDrops.EyeBall.html ├── EyeDrops.File.Path.html ├── EyeDrops.Task.html ├── EyeDrops.Tasks.html ├── Mix.Tasks.EyeDrops.html ├── SwitchError.html ├── TasksError.html ├── api-reference.html ├── dist │ ├── app-372682077e.js │ ├── app-f7824c48e6.css │ └── sidebar_items-307bd39f2e.js ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff └── index.html ├── lib ├── eye_drops │ ├── commands │ │ ├── commands.ex │ │ ├── commands_test.exs │ │ └── switch_error.ex │ ├── eye_ball │ │ ├── eye_ball.ex │ │ └── eye_ball_test.exs │ ├── file │ │ ├── path.ex │ │ └── path_test.exs │ └── tasks │ │ ├── task.ex │ │ ├── task_test.exs │ │ ├── tasks.ex │ │ ├── tasks_error.ex │ │ └── tasks_test.exs ├── mix │ └── tasks │ │ └── eye_drops.ex └── test_helper.exs ├── mix.exs └── mix.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | erl_crash.dump 5 | *.ez 6 | *.tar 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/README.md -------------------------------------------------------------------------------- /config/.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/config/.credo.exs -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/config/test.exs -------------------------------------------------------------------------------- /doc/.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/.build -------------------------------------------------------------------------------- /doc/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/404.html -------------------------------------------------------------------------------- /doc/EyeDrops.Commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/EyeDrops.Commands.html -------------------------------------------------------------------------------- /doc/EyeDrops.EyeBall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/EyeDrops.EyeBall.html -------------------------------------------------------------------------------- /doc/EyeDrops.File.Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/EyeDrops.File.Path.html -------------------------------------------------------------------------------- /doc/EyeDrops.Task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/EyeDrops.Task.html -------------------------------------------------------------------------------- /doc/EyeDrops.Tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/EyeDrops.Tasks.html -------------------------------------------------------------------------------- /doc/Mix.Tasks.EyeDrops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/Mix.Tasks.EyeDrops.html -------------------------------------------------------------------------------- /doc/SwitchError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/SwitchError.html -------------------------------------------------------------------------------- /doc/TasksError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/TasksError.html -------------------------------------------------------------------------------- /doc/api-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/api-reference.html -------------------------------------------------------------------------------- /doc/dist/app-372682077e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/dist/app-372682077e.js -------------------------------------------------------------------------------- /doc/dist/app-f7824c48e6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/dist/app-f7824c48e6.css -------------------------------------------------------------------------------- /doc/dist/sidebar_items-307bd39f2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/dist/sidebar_items-307bd39f2e.js -------------------------------------------------------------------------------- /doc/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/fonts/icomoon.eot -------------------------------------------------------------------------------- /doc/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/fonts/icomoon.svg -------------------------------------------------------------------------------- /doc/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/fonts/icomoon.ttf -------------------------------------------------------------------------------- /doc/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/fonts/icomoon.woff -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/doc/index.html -------------------------------------------------------------------------------- /lib/eye_drops/commands/commands.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/commands/commands.ex -------------------------------------------------------------------------------- /lib/eye_drops/commands/commands_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/commands/commands_test.exs -------------------------------------------------------------------------------- /lib/eye_drops/commands/switch_error.ex: -------------------------------------------------------------------------------- 1 | defmodule SwitchError do 2 | defexception [:message] 3 | end -------------------------------------------------------------------------------- /lib/eye_drops/eye_ball/eye_ball.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/eye_ball/eye_ball.ex -------------------------------------------------------------------------------- /lib/eye_drops/eye_ball/eye_ball_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/eye_ball/eye_ball_test.exs -------------------------------------------------------------------------------- /lib/eye_drops/file/path.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/file/path.ex -------------------------------------------------------------------------------- /lib/eye_drops/file/path_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/file/path_test.exs -------------------------------------------------------------------------------- /lib/eye_drops/tasks/task.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/tasks/task.ex -------------------------------------------------------------------------------- /lib/eye_drops/tasks/task_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/tasks/task_test.exs -------------------------------------------------------------------------------- /lib/eye_drops/tasks/tasks.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/tasks/tasks.ex -------------------------------------------------------------------------------- /lib/eye_drops/tasks/tasks_error.ex: -------------------------------------------------------------------------------- 1 | defmodule TasksError do 2 | defexception [:message] 3 | end -------------------------------------------------------------------------------- /lib/eye_drops/tasks/tasks_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/eye_drops/tasks/tasks_test.exs -------------------------------------------------------------------------------- /lib/mix/tasks/eye_drops.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/lib/mix/tasks/eye_drops.ex -------------------------------------------------------------------------------- /lib/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkotze/eye_drops/HEAD/mix.lock --------------------------------------------------------------------------------