@kou @nobu, the two most recent releases 3.2.7 and 3.2.8 should be major versions as they introduce strscan which seems to require some native extensions and compilation on systems. This is breaking my world with folks using Chef. Can you please yank those and make this 4.x.x or something?
For Chef folks looking for a fix, add the following to your cookbooks metadata.rb:
# Temporary Workaround (https://github.com/ruby/rexml/issues/131)
gem 'rexml', '= 3.2.6'
You can also install gcc in your kitchen using:
lifecycle:
post_create:
# Temporary Workaround (https://github.com/ruby/rexml/issues/131)
- remote: sudo yum install -y gcc
Thanks
@kou @nobu, the two most recent releases 3.2.7 and 3.2.8 should be major versions as they introduce
strscanwhich seems to require some native extensions and compilation on systems. This is breaking my world with folks using Chef. Can you please yank those and make this 4.x.x or something?For Chef folks looking for a fix, add the following to your cookbooks metadata.rb:
You can also install
gccin your kitchen using:Thanks