Sha256: 8c2e30622808c285d174754b394ecdf9e0d841bf07dfc42b5a49c8ef97099457
Contents?: true
Size: 283 Bytes
Versions: 14
Compression:
Stored size: 283 Bytes
Contents
# frozen_string_literal: true require_relative './forward_calendar/forward_calendar' module ForwardCalendar def self.parser(file_content) ForwardCalendar.new(file_content) end def self.parser_from_file(file_path) xml = File.open(file_path) parser(xml) end end
Version data entries
14 entries across 14 versions & 1 rubygems