├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENCE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── bin ├── afternoon_seal.sh ├── morning_seal.sh └── seal.rb ├── config.ru ├── config └── alphagov.yml ├── images ├── emoji │ ├── Everyday images │ │ ├── angrier_seal.jpg │ │ ├── happy_seal.gif │ │ ├── informative_seal.png │ │ └── seal_of_approval.png │ ├── Festive season images │ │ ├── festive_season_angrier_seal.jpg │ │ ├── festive_season_informative_seal.jpg │ │ └── festive_season_seal_of_approval.jpg │ └── Halloween images │ │ ├── halloween_angrier_seal.jpg │ │ ├── halloween_informative_seal.jpg │ │ └── halloween_seal_of_approval.jpg ├── manatea.jpg └── readme │ ├── angry.png │ └── informative.png ├── lib ├── github_fetcher.rb ├── message_builder.rb ├── seal.rb └── slack_lib.rb ├── server.rb └── spec ├── config_spec.rb ├── github_fetcher_spec.rb ├── message_builder_spec.rb ├── seal_spec.rb ├── slack_poster_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | seal 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.5 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | sudo: false 3 | rvm: 4 | - 2.5 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/LICENCE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rackup config.ru -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/app.json -------------------------------------------------------------------------------- /bin/afternoon_seal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/bin/afternoon_seal.sh -------------------------------------------------------------------------------- /bin/morning_seal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/bin/morning_seal.sh -------------------------------------------------------------------------------- /bin/seal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/bin/seal.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './server.rb' 2 | run SealApp 3 | -------------------------------------------------------------------------------- /config/alphagov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/config/alphagov.yml -------------------------------------------------------------------------------- /images/emoji/Everyday images/angrier_seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Everyday images/angrier_seal.jpg -------------------------------------------------------------------------------- /images/emoji/Everyday images/happy_seal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Everyday images/happy_seal.gif -------------------------------------------------------------------------------- /images/emoji/Everyday images/informative_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Everyday images/informative_seal.png -------------------------------------------------------------------------------- /images/emoji/Everyday images/seal_of_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Everyday images/seal_of_approval.png -------------------------------------------------------------------------------- /images/emoji/Festive season images/festive_season_angrier_seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Festive season images/festive_season_angrier_seal.jpg -------------------------------------------------------------------------------- /images/emoji/Festive season images/festive_season_informative_seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Festive season images/festive_season_informative_seal.jpg -------------------------------------------------------------------------------- /images/emoji/Festive season images/festive_season_seal_of_approval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Festive season images/festive_season_seal_of_approval.jpg -------------------------------------------------------------------------------- /images/emoji/Halloween images/halloween_angrier_seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Halloween images/halloween_angrier_seal.jpg -------------------------------------------------------------------------------- /images/emoji/Halloween images/halloween_informative_seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Halloween images/halloween_informative_seal.jpg -------------------------------------------------------------------------------- /images/emoji/Halloween images/halloween_seal_of_approval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/emoji/Halloween images/halloween_seal_of_approval.jpg -------------------------------------------------------------------------------- /images/manatea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/manatea.jpg -------------------------------------------------------------------------------- /images/readme/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/readme/angry.png -------------------------------------------------------------------------------- /images/readme/informative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/images/readme/informative.png -------------------------------------------------------------------------------- /lib/github_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/lib/github_fetcher.rb -------------------------------------------------------------------------------- /lib/message_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/lib/message_builder.rb -------------------------------------------------------------------------------- /lib/seal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/lib/seal.rb -------------------------------------------------------------------------------- /lib/slack_lib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/lib/slack_lib.rb -------------------------------------------------------------------------------- /server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/server.rb -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/github_fetcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/github_fetcher_spec.rb -------------------------------------------------------------------------------- /spec/message_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/message_builder_spec.rb -------------------------------------------------------------------------------- /spec/seal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/seal_spec.rb -------------------------------------------------------------------------------- /spec/slack_poster_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/slack_poster_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryberry/seal/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------