[Rails] Re: Using scaffolding

2014-02-06 Thread Kishore Seemala
Maybe the routes.rb has not been updated with the new resource users. Once check the routes.rb under config folder in your application and place resources :users, if it is missing Or you can also check the url http://localhost:3000/users/index, sometimes its problem with scaffolding -- Posted

[Rails] Solr Search with one to many associations

2014-02-05 Thread Kishore Seemala
I have a 2 entities which have many to many relation say teacher and slot. Each teacher has many classes he/she takes up and each class is a slot. I want to perform search on teacher by sunspot solr for all the teacher who takes classes for different days in specific time. Say model structures

[Rails] sunspot solr search on multiple fields of associated models

2014-01-31 Thread kishore . seemala
I have a 2 entities which have many to many relation say teacher and subject. Each teacher has many subjects. I want to perform search on teacher by sunspot solr for all the teacher who teaches 3 subjects biology, anatomy and botany with specific time. -- Say model structures and