ruby on rails 3.2 - Can't start Solr-Server after installation: bundle exec rake sunspot:solr:start rake aborted! undefined method `map' for :needs:Symbol -


after installed sunspot_rails i'm getting error "undefined method `map' :needs:symbol" if run bundle exec rake sunspot:solr:start

i don't know how pinpoint error.. if have suggestions please let me know

error: http://pastebin.com/5x8bkfkd

gemfile:

source 'https://rubygems.org'  gem 'rails', '3.2.16'  # bundle edge rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git'  gem "sunspot_rails", "~> 1.2.1" gem "sunspot_with_kaminari", "~> 0.1.0" gem "jquery-ui-rails" gem 'sqlite3' gem "kaminari", "~> 0.12.4" gem "devise", ">=1.4.4" gem "dynamic_form", "~> 1.1.4"  group :development, :test    gem "rspec-rails", "~> 2.6.1"   gem "database_cleaner", "~> 0.6.7" end  # gems used assets , not required # in production environments default. group :assets   gem 'sass-rails',   '~> 3.2.3'   gem 'coffee-rails', '~> 3.2.1'    # see https://github.com/sstephenson/execjs#readme more supported runtimes   # gem 'therubyracer', :platforms => :ruby    gem 'uglifier', '>= 1.0.3' end  gem 'jquery-rails'  # use activemodel has_secure_password # gem 'bcrypt-ruby', '~> 3.0.0'  # use jbuilder templates json # gem 'jbuilder'  # use unicorn app server # gem 'unicorn'  # deploy capistrano # gem 'capistrano'  # use debugger # gem 'debugger' 

it seems sunspot_rails 1.2.1 doesn't work rails 3.2.16. no error last version of sunspot_rails

gemfile:

source 'https://rubygems.org'  gem 'rails', '3.2.16'  # bundle edge rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git'  gem "sunspot_rails" gem "sunspot_solr" gem "sunspot_with_kaminari" gem "jquery-ui-rails" gem 'sqlite3' gem "kaminari", "~> 0.12.4" gem "devise", ">=1.4.4" gem "dynamic_form", "~> 1.1.4"  group :development, :test    gem "rspec-rails", "~> 2.6.1"   gem "database_cleaner", "~> 0.6.7" end  # gems used assets , not required # in production environments default. group :assets   gem 'sass-rails',   '~> 3.2.3'   gem 'coffee-rails', '~> 3.2.1'    # see https://github.com/sstephenson/execjs#readme more supported runtimes   # gem 'therubyracer', :platforms => :ruby    gem 'uglifier', '>= 1.0.3' end  gem 'jquery-rails'  # use activemodel has_secure_password # gem 'bcrypt-ruby', '~> 3.0.0'  # use jbuilder templates json # gem 'jbuilder'  # use unicorn app server # gem 'unicorn'  # deploy capistrano # gem 'capistrano'  # use debugger # gem 'debugger' 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -