-1

Hello I am using: 'http'rails', '3.1.0'

# Bundle edge Rails instead:

gem 'mysql2'
gem 'activeadmin'

# Gems used only for assets and not required

# in production environments by default.

group :assets do
  gem 'sass-rails', "  ~> 3.1.0"
  gem 'coffee-rails', "~> 3.1.0"
  gem 'uglifier'
end

gem 'jquery-rails'
Josh Crozier
  • 233,099
  • 56
  • 391
  • 304
venu
  • 773
  • 2
  • 7
  • 8
  • Have a look here - http://stackoverflow.com/questions/16844411/rails-active-admin-deployment-couldnt-find-file-jquery-ui – veritas1 Feb 15 '14 at 08:21

1 Answers1

0

Use specific version of gem "jquery-rails", "~> 2.3.0"

or

you can use gem "jquery-ui-rails" for jquery-ui . For more information please visit the git repository

To require all jQuery UI modules, add the following to your application.js:

//= require jquery.ui.all

Also add the jQuery UI CSS to your application.css:

/*
 *= require jquery.ui.all
 */

Hope this could help you. For creat new admin users:

AdminUser.create!(:email => 'your_email', :password => 'password', :password_confirmation => 'password')
sunil
  • 1,040
  • 9
  • 20