├── .dockerignore ├── .env.sample ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── coreos ├── .env.sample ├── Vagrantfile ├── config.rb └── user-data.yml.erb ├── icons ├── failed.jpg └── passed.jpg ├── run.rb ├── run.sh ├── screenshot.png ├── script ├── build ├── run ├── test-for-docker-box └── test-for-ruby-box ├── wercker-step.yml └── wercker.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "slack-notifier" 3 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/README.md -------------------------------------------------------------------------------- /coreos/.env.sample: -------------------------------------------------------------------------------- 1 | TIMEZONE= 2 | -------------------------------------------------------------------------------- /coreos/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/coreos/Vagrantfile -------------------------------------------------------------------------------- /coreos/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/coreos/config.rb -------------------------------------------------------------------------------- /coreos/user-data.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/coreos/user-data.yml.erb -------------------------------------------------------------------------------- /icons/failed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/icons/failed.jpg -------------------------------------------------------------------------------- /icons/passed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/icons/passed.jpg -------------------------------------------------------------------------------- /run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/run.rb -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/run.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/screenshot.png -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/script/build -------------------------------------------------------------------------------- /script/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/script/run -------------------------------------------------------------------------------- /script/test-for-docker-box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/script/test-for-docker-box -------------------------------------------------------------------------------- /script/test-for-ruby-box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/script/test-for-ruby-box -------------------------------------------------------------------------------- /wercker-step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/wercker-step.yml -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/step-pretty-slack-notify/HEAD/wercker.yml --------------------------------------------------------------------------------