davidfstr / rdiscount

Discount (For Ruby) Implementation of John Gruber's Markdown
http://dafoster.net/projects/rdiscount/
Other
752 stars 70 forks source link

Use RbConfig instead of Config #124

Closed orangejulius closed 9 years ago

orangejulius commented 9 years ago

The Config module is depricated in favor of RbConfig, and as of Ruby 2.2 no longer exists (it used to print a warning). It appears that RbConfig exists since at least Ruby 1.9.2, so all versions of Ruby supported by Rdiscount should be fine with this change.

davidfstr commented 9 years ago

Looks great. Thanks!