├── .github └── workflows │ └── docker.yml ├── .gitignore ├── .rspec ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── app.rb ├── assets ├── discord.png └── slack.png ├── lib └── ndjson.rb └── spec ├── fixtures └── nomad │ ├── stream_a_1.txt │ └── stream_a_2.txt ├── lib └── ndjson_spec.rb └── spec_helper.rb /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .byebug_history 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull requests welcome! 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/app.rb -------------------------------------------------------------------------------- /assets/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/assets/discord.png -------------------------------------------------------------------------------- /assets/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/assets/slack.png -------------------------------------------------------------------------------- /lib/ndjson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/lib/ndjson.rb -------------------------------------------------------------------------------- /spec/fixtures/nomad/stream_a_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/spec/fixtures/nomad/stream_a_1.txt -------------------------------------------------------------------------------- /spec/fixtures/nomad/stream_a_2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/lib/ndjson_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/spec/lib/ndjson_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/nomad-event-streamer/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------