git-fame-rb
git-fame-rb copied to clipboard
Deprecator issue
Hi there, Just installed git_fame. I have an error:
❯ git fame --after 2010-01-01
/opt/homebrew/lib/ruby/gems/3.2.0/gems/activesupport-7.1.2/lib/active_support/core_ext/array/conversions.rb:108:in `<class:Array>': undefined method `deprecator' for ActiveSupport:Module (NoMethodError)
Versions:
❯ ruby -v
ruby 3.2.2 (2023-03-30 revision e51014f9c0) [arm64-darwin23]
❯ gem -v
3.4.22
Thanks
same
@axeloz What fixed it for me was using a different version of activesupport.
I just did:
gem install activesupport -v '7.0'
and then created a custom Gemfile:
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'activesupport', '7.0.0'
gem 'git_fame'
# gem "rails"
Just released a possible fix. Please give 3.1.1 a try.