Sha256: e997eb450f987efa56d947763d19daa9b755cd5947df821a03c838454ac27564

Contents?: true

Size: 235 Bytes

Versions: 1

Compression:

Stored size: 235 Bytes

Contents

require 'minitest/autorun'
require 'sideband'

class EmailWorker < Sideband::Worker

  attr_reader :work

  def initialize
    @work = 'work'
  end

  def call
    @work = 'finished'
  end
end

def jruby?
  RUBY_PLATFORM =~ /java/
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sideband-1.0.1 test/helper.rb