Sha256: e5697ac477ddaaca52db019e12aca06df449302680ea71c7a35202426c41de9b

Contents?: true

Size: 309 Bytes

Versions: 1

Compression:

Stored size: 309 Bytes

Contents

# frozen_string_literal: true

module Balboa
  module Interactor
    class InteractorWrapper
      def initialize(interactor)
        @interactor = interactor
      end
      
      def punch(date)
        @interactor.punch(date)
      end

      def last
        @interactor.last
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
balboa-0.1.2 lib/balboa/interactor/interactor_wrapper.rb