Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anybody know how to create a rails application that use noSql database? We do rails new app_name -d mysql for using mysql database, I need to know what command I should fire in case of noSql database.how to configure and connect to that database and how to use table from it. I need reference link to study. Can anybody help me out? Thanks.

share|improve this question
1  
Have you tried Googling “mongodb rails”? – Edward Ocampo-Gooding Jun 23 '12 at 12:26

2 Answers

up vote 2 down vote accepted

As far as I am concerned you will have to create a new Rails project excluding active record:

rails new my_app --skip-active-record

then you can follow the configuration steps from Mongoid:

http://mongoid.org/en/mongoid/docs/installation.html

share|improve this answer
Mongoid is a popular Object Mapper for use with MongoDB but not the only one. – Stennie Jun 23 '12 at 22:20
Hello Arthur I tried above link but it gives me following error .. /usr/local/lib/ruby/1.9.1/forwardable.rb:153:in block in instance_delegate': undefined method each' for "[]":String (NoMethodError). – Shrikant Jun 24 '12 at 12:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.