Sha256: 92815461c89250f35a25746256ddf77f51e38cfe772d4c078cd34c9c89628399

Contents?: true

Size: 587 Bytes

Versions: 3

Compression:

Stored size: 587 Bytes

Contents

# frozen_string_literal: true

module OnStrum
  module Service
    WARNING = <<~MESSAGE
      📢 Note: You have both Strum::Service and OnStrum::Service installed.
      You can safely migrate your services by replacing:
        include Strum::Service
      with:
        include OnStrum::Service

      All public APIs and behavior are fully compatible!
    MESSAGE

    module Error
      require_relative 'error/runtime'
    end

    require_relative 'version'
    require_relative 'class_methods'
    require_relative 'instance_methods'
    require_relative '../service'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
on_strum-service-1.1.1 lib/on_strum/service/core.rb
on_strum-service-1.1.0 lib/on_strum/service/core.rb
on_strum-service-1.0.2 lib/on_strum/service/core.rb