Sha256: ef31562cc603b57fbd4b9c5ee10d8be16454fe4529467192cc2229447edc67a9
Contents?: true
Size: 360 Bytes
Versions: 2
Compression:
Stored size: 360 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 def options @interactor.options end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
balboa-0.1.6 | lib/balboa/interactor/interactor_wrapper.rb |
balboa-0.1.5 | lib/balboa/interactor/interactor_wrapper.rb |