Fix to admin_active gem bug

You add adminactive gem to your Gemfile, then when you’re running to bundle on your terminal, you’ re getting like,

1
2
3
4
5
6
7
8
9
$ bundle
Fetching gem metadata from https://rubygems.org/..........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Bundler could not find compatible versions for gem "rails":
  In Gemfile:
    activeadmin (~> 0.6.3) ruby depends on
      rails (< 4, >= 3.0.0) ruby
    rails (4.1.4

If you replace on Gemfile from

1
gem 'activeadmin'

to

1
gem 'activeadmin', github: 'gregbell/active_admin'

you can fix easily.

That’s all.

I hope helped to you.

Comments