1

I tried to add the following link to my gemspec :

  s.add_dependency 'arel', '6.0.0.beta2'

then when I run bundle I get

Bundler could not find compatible versions for gem "arel":
  In Gemfile:
    subscribem (>= 0) ruby depends on
      rails (~> 4.2.0) ruby depends on
        activerecord (= 4.2.0) ruby depends on
          arel (~> 6.0) ruby

    subscribem (>= 0) ruby depends on
      arel (6.0.0.beta2)

I need to update arel because it's causing some migration errors known here

Community
  • 1
  • 1
Ahmad Al-kheat
  • 1,805
  • 2
  • 16
  • 25

1 Answers1

0

Ok this did the trick :

sudo gem install arel -v 6.0.0.beta2
Ahmad Al-kheat
  • 1,805
  • 2
  • 16
  • 25