Askar
Askar

Reputation: 5854

Can't install activeadmin for Rails 4.1.0

My Environment:

Gemfile:

gem 'activeadmin', github: 'gregbell/active_admin'
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
gem "formtastic", github: "justinfrench/formtastic"
gem "ransack", github: "activerecord-hackery/ransack"
gem "devise", github: "plataformatec/devise"

When I run:

$bundle install
Fetching git://github.com/gregbell/active_admin.git

And it lasts endless...

I noticed it's taking time also when I try to install one of the following gems:

gem "ransack", github: "activerecord-hackery/ransack"
gem "formtastic", github: "justinfrench/formtastic"

UPDATE

This issue was happening for 6 days and just worked today. Have no idea what was happening. I wish I knew about --verbose option as @SreekanthGS was pointing out below, we'd have some idea about the root cause.

Upvotes: 0

Views: 775

Answers (1)

SreekanthGS
SreekanthGS

Reputation: 988

Try to see what's happening within the bundle install process by using the verbose switch.

bundle install --verbose

Upvotes: 1

Related Questions