├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPMENT ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin └── pomo ├── features ├── configuration.feature ├── manage_list.feature ├── manage_tasks.feature ├── step_definitions │ └── pomo_steps.rb └── support │ └── env.rb ├── lib ├── pomo.rb └── pomo │ ├── break.rb │ ├── configuration.rb │ ├── github_task.rb │ ├── list.rb │ ├── notifier.rb │ ├── notifier │ ├── growl_notifier.rb │ ├── libnotify_notifier.rb │ ├── notification_center_notifier.rb │ └── quicksilver_notifier.rb │ ├── os.rb │ ├── task.rb │ └── version.rb ├── pomo.gemspec └── spec ├── pomo ├── configuration_spec.rb ├── list_spec.rb └── task_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/DEVELOPMENT -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/pomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/bin/pomo -------------------------------------------------------------------------------- /features/configuration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/features/configuration.feature -------------------------------------------------------------------------------- /features/manage_list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/features/manage_list.feature -------------------------------------------------------------------------------- /features/manage_tasks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/features/manage_tasks.feature -------------------------------------------------------------------------------- /features/step_definitions/pomo_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/features/step_definitions/pomo_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/pomo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo.rb -------------------------------------------------------------------------------- /lib/pomo/break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/break.rb -------------------------------------------------------------------------------- /lib/pomo/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/configuration.rb -------------------------------------------------------------------------------- /lib/pomo/github_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/github_task.rb -------------------------------------------------------------------------------- /lib/pomo/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/list.rb -------------------------------------------------------------------------------- /lib/pomo/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/notifier.rb -------------------------------------------------------------------------------- /lib/pomo/notifier/growl_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/notifier/growl_notifier.rb -------------------------------------------------------------------------------- /lib/pomo/notifier/libnotify_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/notifier/libnotify_notifier.rb -------------------------------------------------------------------------------- /lib/pomo/notifier/notification_center_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/notifier/notification_center_notifier.rb -------------------------------------------------------------------------------- /lib/pomo/notifier/quicksilver_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/notifier/quicksilver_notifier.rb -------------------------------------------------------------------------------- /lib/pomo/os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/os.rb -------------------------------------------------------------------------------- /lib/pomo/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/lib/pomo/task.rb -------------------------------------------------------------------------------- /lib/pomo/version.rb: -------------------------------------------------------------------------------- 1 | module Pomo 2 | VERSION = '2.1.3' 3 | end 4 | -------------------------------------------------------------------------------- /pomo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/pomo.gemspec -------------------------------------------------------------------------------- /spec/pomo/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/spec/pomo/configuration_spec.rb -------------------------------------------------------------------------------- /spec/pomo/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/spec/pomo/list_spec.rb -------------------------------------------------------------------------------- /spec/pomo/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/spec/pomo/task_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/pomo/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------