Remove outdated libxml-ruby version spec in XmlMini doc comment

XmlMini is currently being tested against libxml-ruby 4.0.0[^1], but the
doc comment for XmlMini says:

```
To use the much faster libxml parser:
gem 'libxml-ruby', '=0.9.7'
```

This comment seems to be very much out of date and could mislead users.

Fix by removing the version specifier so that the documentation simply
recommends:

```
To use the much faster libxml parser:
gem 'libxml-ruby'
XmlMini.backend = 'LibXML'
```

[^1]: 621bc68548/Gemfile.lock (L310)
This commit is contained in:
Matt Brictson 2023-08-29 13:44:39 -07:00
parent 621bc68548
commit 0bbaaf69ad
No known key found for this signature in database

@ -12,7 +12,7 @@ module ActiveSupport
# = \XmlMini
#
# To use the much faster libxml parser:
# gem 'libxml-ruby', '=0.9.7'
# gem 'libxml-ruby'
# XmlMini.backend = 'LibXML'
module XmlMini
extend self