brendon / acts_as_list

An ActiveRecord plugin for managing lists.
http://brendon.github.io/acts_as_list/
MIT License
2.05k stars 356 forks source link

Add explicit requirement of ActiveSupport::Inflector. Fixes #386 #387

Closed rdvdijk closed 4 years ago

rdvdijk commented 4 years ago

This adds an explicit requirement of ActiveSupport::Inflector, which solves #386.

Using this Gemfile:

source "https://rubygems.org"
gem "activerecord"
gem "acts_as_list"

The following will now work:

bundle install
bundle console # would fail previously
brendon commented 4 years ago

Perfect! 👍 Would you like a release or are you happy to work with master for now?

rdvdijk commented 4 years ago

I don't need a release, this can wait. But thanks!