Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Fixes #379 #401

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Sep 12, 2015

  1. Fixes activerecord-hackery#379

    Since polyamorous 1.1.0 [differs from 1.2.0](activerecord-hackery/polyamorous@ca95023) only by the version number and the README file, it's perfectly unacquired to simply change the dependency version.
    
    Copied from [5bf84bd](activerecord-hackery/squeel@5bf84b) which is not on the master branch, so can't be referenced.
    Gordon McNaughton committed Sep 12, 2015
    Configuration menu
    Copy the full SHA
    51422a9 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2016

  1. Configuration menu
    Copy the full SHA
    e3fcd1c View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2018

  1. Fix deprecation warnings under ruby-2.4+

    ruby 2.4 deprecated Fixnum and Bignum, replacing them with a single
    unified Integer class.
    Gordon McNaughton committed Feb 28, 2018
    Configuration menu
    Copy the full SHA
    5cd30a5 View commit details
    Browse the repository at this point in the history
  2. Fix rake errors

    Fix 'NoMethodError: undefined method `last_comment'' errors when trying
    to run rake for this gem. Rake 11.0.1 removes the last_comment method
    which rspec-core (< 3.4.4) uses. Therefore until/if a patch is released
    we need to pin rake to an older version in Gemfile:
    
      gem 'rake', '< 11.0'
    
    Then:
    
      bundle exec rake install
    
    https://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
    Gordon McNaughton committed Feb 28, 2018
    Configuration menu
    Copy the full SHA
    0c06d56 View commit details
    Browse the repository at this point in the history