├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rspec ├── .rspec_status ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── bloodbath.gemspec ├── fixtures └── vcr_cassettes │ └── Bloodbath_Event │ ├── _cancel │ ├── 1_4_1.yml │ └── _cancel │ │ └── 1_4_2_1.yml │ ├── _find │ ├── 1_3_1.yml │ └── _find │ │ └── 1_3_2_1.yml │ ├── _list │ ├── 1_2_1.yml │ └── _list │ │ └── 1_2_1_1.yml │ └── _schedule │ ├── 1_1_1.yml │ └── _schedule │ └── 1_1_2_1.yml ├── lib ├── bloodbath.rb └── bloodbath │ ├── configuration.rb │ ├── event.rb │ ├── utils │ ├── threading.rb │ └── verbose.rb │ └── version.rb └── spec ├── bloodbath └── event_spec.rb ├── bloodbath_spec.rb └── spec_helper.rb /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rspec_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/.rspec_status -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/bin/setup -------------------------------------------------------------------------------- /bloodbath.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/bloodbath.gemspec -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_cancel/1_4_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_cancel/1_4_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_cancel/_cancel/1_4_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_cancel/_cancel/1_4_2_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_find/1_3_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_find/1_3_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_find/_find/1_3_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_find/_find/1_3_2_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_list/1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_list/1_2_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_list/_list/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_list/_list/1_2_1_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_schedule/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_schedule/1_1_1.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/Bloodbath_Event/_schedule/_schedule/1_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/fixtures/vcr_cassettes/Bloodbath_Event/_schedule/_schedule/1_1_2_1.yml -------------------------------------------------------------------------------- /lib/bloodbath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/lib/bloodbath.rb -------------------------------------------------------------------------------- /lib/bloodbath/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/lib/bloodbath/configuration.rb -------------------------------------------------------------------------------- /lib/bloodbath/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/lib/bloodbath/event.rb -------------------------------------------------------------------------------- /lib/bloodbath/utils/threading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/lib/bloodbath/utils/threading.rb -------------------------------------------------------------------------------- /lib/bloodbath/utils/verbose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/lib/bloodbath/utils/verbose.rb -------------------------------------------------------------------------------- /lib/bloodbath/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Bloodbath 4 | VERSION = "1.1.1" 5 | end 6 | -------------------------------------------------------------------------------- /spec/bloodbath/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/spec/bloodbath/event_spec.rb -------------------------------------------------------------------------------- /spec/bloodbath_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/spec/bloodbath_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodbath-io/bloodbath-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------