Sha256: 96519c2d993eab84b9940d2d448eea0fbdd7db509bcd4013e61ee2c99e43bfd8
Contents?: true
Size: 366 Bytes
Versions: 2
Compression:
Stored size: 366 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.4 | lib/balboa/interactor/interactor_wrapper.rb |
balboa-0.1.3 | lib/balboa/interactor/interactor_wrapper.rb |