Summary:
Introduces Appraisal and updates activesupport to require version >= 4.2.2.
A description of Appraisal and it's purpose:
Appraisal integrates with bundler and rake to test your library against different versions of dependencies in repeatable scenarios called "appraisals." Appraisal is designed to make it easy to check for regressions in your library without interfering with day-to-day development using Bundler.
Version bump for ActiveSupport:
ActiveSupport version4.2.2 includes two important security vulnerability fixes. ActiveSupport 4.1.11 also includes the same vulnerability fixes. We could support 4.1.11 but since 4.2.2 has been available since June 16, 2015, it seems reasonable to increase the required version to 4.2.2 instead of spending additional time ensuring this library supports older versions.
Fixes #157
Summary: Introduces Appraisal and updates
activesupport
to require version>= 4.2.2
.A description of Appraisal and it's purpose:
Version bump for ActiveSupport: ActiveSupport version
4.2.2
includes two important security vulnerability fixes. ActiveSupport4.1.11
also includes the same vulnerability fixes. We could support4.1.11
but since4.2.2
has been available since June 16, 2015, it seems reasonable to increase the required version to4.2.2
instead of spending additional time ensuring this library supports older versions.