MongoDB Class. Install mongo driver to connect with ruby source files. Part 1 - Install gem
# Steps | |
# 1. Install the gem mongo | |
gem install mongo | |
gem install bson_ext | |
# bson_ext is for optimal performance of using mongodb. | |
# You can still use mongo without it. | |
# But then, it will throw a warning. | |
# you you skip rdoc and ri using | |
# gem install mongo --no-rdoc --no-ri |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment