README.md in dolos-0.2.1 vs README.md in dolos-0.3.0
- old
+ new
@@ -1,10 +1,13 @@
# Dolos
+[![Gem version](https://badge.fury.io/rb/dolos.svg)](https://rubygems.org/gems/dolos)
+[![Build status](https://github.com/benetis/dolos/actions/workflows/ruby.yml/badge.svg)](https://github.com/benetis/dolos/actions)
-<img height="256" src="docs/dolos_stable_diff.png" width="256"/>
+<img height="256" src="docs/images/dolos_stable_diff.png" width="256"/>
+
### Disclaimer
🚧 Under development, not stable yet 🚧
### Parser combinator library for Ruby
@@ -38,16 +41,16 @@
require 'dolos_common_parsers/common_parsers'
include Dolos
# frozen_string_literal: true
require_relative 'dolos'
-require_relative 'dolos_common_parsers/common_parsers'
+require_relative 'dolos_parsers/common_parsers'
include Dolos
# Include common parsers
# In future this can be more structured, moved them to separate module to prevent breaking changes
-include Dolos::CommonParsers
+include Dolos::Common
# Library usage example
# Parse out a name and address from a letter
# For higher difficulty, we will not split this into multiple lines, but instead parse it all at once
letter = <<-LETTER
\ No newline at end of file