├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── rake_notify ├── lib ├── rake_notification.rb ├── rake_notification │ └── version.rb ├── rake_notifier.rb └── rake_notifier │ ├── ikachan.rb │ └── slack.rb ├── rake_notification.gemspec └── spec ├── lib ├── rake_notification_spec.rb ├── rake_notifier │ ├── ikachan │ │ └── client_spec.rb │ ├── ikachan_spec.rb │ └── slack_spec.rb └── rake_notifier_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/rake_notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/bin/rake_notify -------------------------------------------------------------------------------- /lib/rake_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/lib/rake_notification.rb -------------------------------------------------------------------------------- /lib/rake_notification/version.rb: -------------------------------------------------------------------------------- 1 | module RakeNotification 2 | VERSION = "0.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /lib/rake_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/lib/rake_notifier.rb -------------------------------------------------------------------------------- /lib/rake_notifier/ikachan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/lib/rake_notifier/ikachan.rb -------------------------------------------------------------------------------- /lib/rake_notifier/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/lib/rake_notifier/slack.rb -------------------------------------------------------------------------------- /rake_notification.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/rake_notification.gemspec -------------------------------------------------------------------------------- /spec/lib/rake_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/lib/rake_notification_spec.rb -------------------------------------------------------------------------------- /spec/lib/rake_notifier/ikachan/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/lib/rake_notifier/ikachan/client_spec.rb -------------------------------------------------------------------------------- /spec/lib/rake_notifier/ikachan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/lib/rake_notifier/ikachan_spec.rb -------------------------------------------------------------------------------- /spec/lib/rake_notifier/slack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/lib/rake_notifier/slack_spec.rb -------------------------------------------------------------------------------- /spec/lib/rake_notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/lib/rake_notifier_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/rake_notification/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------