I want to use activeadmin for my rails project, so I added it to my gemfile .
gem 'activeadmin'
and updated the package, but received this error message -
Resolving dependencies...
Bundler could not find compatible versions for gem "actionpack":
In Gemfile:
activeadmin (>= 0) ruby depends on
actionpack (~> 3.0.0.rc2) ruby
rails (= 4.0.0) ruby depends on
actionpack (4.0.0)
I uploaded the project to github; this is a gemfile link - https://github.com/Mashpy/esl/blob/master/Gemfile
source 'https://rubygems.org'
gem 'rails', '4.0.0'
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'activeadmin'
group :doc do
gem 'sdoc', require: false
end
What am I doing wrong, what prevents me from adding activeadmin?
source
share