├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── activejob-4.0 └── activejob-5.0 ├── lib └── wisper │ ├── active_job.rb │ ├── active_job │ └── version.rb │ ├── active_job_broadcaster.rb │ └── activejob.rb ├── spec ├── configuration_spec.rb ├── integration_spec.rb └── spec_helper.rb └── wisper-activejob.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/activejob-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/gemfiles/activejob-4.0 -------------------------------------------------------------------------------- /gemfiles/activejob-5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/gemfiles/activejob-5.0 -------------------------------------------------------------------------------- /lib/wisper/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/lib/wisper/active_job.rb -------------------------------------------------------------------------------- /lib/wisper/active_job/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/lib/wisper/active_job/version.rb -------------------------------------------------------------------------------- /lib/wisper/active_job_broadcaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/lib/wisper/active_job_broadcaster.rb -------------------------------------------------------------------------------- /lib/wisper/activejob.rb: -------------------------------------------------------------------------------- 1 | require "wisper/active_job" 2 | -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/spec/integration_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /wisper-activejob.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisleech/wisper-activejob/HEAD/wisper-activejob.gemspec --------------------------------------------------------------------------------