Sha256: a1db2a1cb8664698eb7f182760459bedbced25d1df7990553113af8a5636c62e
Contents?: true
Size: 321 Bytes
Versions: 2
Compression:
Stored size: 321 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_punch @interactor.last_punch end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
balboa-0.1.1 | lib/balboa/interactor/interactor_wrapper.rb |
balboa-0.1.0 | lib/balboa/interactor/interactor_wrapper.rb |