├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib ├── pomodoro-timer.coffee ├── pomodoro-view.coffee └── pomodoro.coffee ├── menus └── pomodoro.cson ├── package.json ├── resources ├── bell.coffee └── ticktack.coffee └── spec └── pomodoro-spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/README.md -------------------------------------------------------------------------------- /lib/pomodoro-timer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/lib/pomodoro-timer.coffee -------------------------------------------------------------------------------- /lib/pomodoro-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/lib/pomodoro-view.coffee -------------------------------------------------------------------------------- /lib/pomodoro.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/lib/pomodoro.coffee -------------------------------------------------------------------------------- /menus/pomodoro.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/menus/pomodoro.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/package.json -------------------------------------------------------------------------------- /resources/bell.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/resources/bell.coffee -------------------------------------------------------------------------------- /resources/ticktack.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/resources/ticktack.coffee -------------------------------------------------------------------------------- /spec/pomodoro-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshiori/pomodoro/HEAD/spec/pomodoro-spec.coffee --------------------------------------------------------------------------------