├── .github └── workflows │ └── test.yml ├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── discord-notifier.gemspec ├── lib ├── discord │ └── notifier.rb ├── discord_notifier.rb └── discord_notifier │ ├── backports │ ├── hash.rb │ └── http.rb │ ├── embed.rb │ ├── form_data.rb │ └── version.rb └── test ├── discord ├── discord_notifier │ ├── embed_test.rb │ ├── form_data_test.rb │ └── version_test.rb └── discord_notifier_test.rb ├── form_body.txt ├── test_attachment.txt └── test_helper.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/bin/setup -------------------------------------------------------------------------------- /discord-notifier.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/discord-notifier.gemspec -------------------------------------------------------------------------------- /lib/discord/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord/notifier.rb -------------------------------------------------------------------------------- /lib/discord_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier.rb -------------------------------------------------------------------------------- /lib/discord_notifier/backports/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier/backports/hash.rb -------------------------------------------------------------------------------- /lib/discord_notifier/backports/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier/backports/http.rb -------------------------------------------------------------------------------- /lib/discord_notifier/embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier/embed.rb -------------------------------------------------------------------------------- /lib/discord_notifier/form_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier/form_data.rb -------------------------------------------------------------------------------- /lib/discord_notifier/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/lib/discord_notifier/version.rb -------------------------------------------------------------------------------- /test/discord/discord_notifier/embed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/discord/discord_notifier/embed_test.rb -------------------------------------------------------------------------------- /test/discord/discord_notifier/form_data_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/discord/discord_notifier/form_data_test.rb -------------------------------------------------------------------------------- /test/discord/discord_notifier/version_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/discord/discord_notifier/version_test.rb -------------------------------------------------------------------------------- /test/discord/discord_notifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/discord/discord_notifier_test.rb -------------------------------------------------------------------------------- /test/form_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/form_body.txt -------------------------------------------------------------------------------- /test/test_attachment.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/discord-notifier/HEAD/test/test_helper.rb --------------------------------------------------------------------------------