Skip to content

Instantly share code, notes, and snippets.

View danielb2's full-sized avatar

Daniel Bretoi danielb2

View GitHub Profile
#!/usr/bin/env ruby
gem 'bson_ext', '1.0.4'
gem "mongoid", '2.0.0.beta.19'
require 'mongoid'
require 'fabrication'
Mongoid.configure do |config|
name = "test"
host = "localhost"
config.master = Mongo::Connection.new.db(name)
# Copyright (c) 2008, Daniel Bretoi <daniel@bretoi.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.