Sha256: 6551054ba77a4fb711ebf9537e3bac77b1761fc3b1f42eaf517f6987661bbf50
Contents?: true
Size: 663 Bytes
Versions: 18
Compression:
Stored size: 663 Bytes
Contents
# ONEAccess Forward Calendar Parser for Ruby This is a Ruby gem to Parse ONEAccess Forward Calendar XML files. ## Installation & Setup Install the gem directly: ``` gem install forward_calendar ``` or add it to your `Gemfile`: ``` gem 'forward_calendar' ``` ## Tests The tests are written in RSpec. Run the `rspec` in the root directory of the project. A coverage report is automatically generated and stored under `/coverage`. ## Usage Basic usage: ```ruby require 'rixml' #parse from file forward_calendar = ForwardCalendar.parse_from_file('./path/to/forward_calendar.xml') #parse from string forward_calendar = ForwardCalendar.parse('<xml></xml>') ```
Version data entries
18 entries across 18 versions & 1 rubygems