Sha256: ebf45aac5c6ed1c06c0e2d9cd33eb3f06faed88538070326801e63cbb3575dca

Contents?: true

Size: 1.03 KB

Versions: 95

Compression:

Stored size: 1.03 KB

Contents

#!/usr/bin/env ruby
$:.unshift(File.dirname(__FILE__) + '/../lib')

begin
  require 'mongo_mapper'
  require 'irb'
rescue LoadError
  require 'rubygems'
  retry
end

IRB.setup(nil)
irb = IRB::Irb.new

IRB.conf[:MAIN_CONTEXT] = irb.context

irb.context.evaluate("require 'irb/completion'", 0)
irb.context.evaluate(%@
include MongoMapper

MongoMapper.database = "mmtest"
$db = MongoMapper.database

@, 0)

puts %@
Welcome to the MongoMapper Console!

Example 1:
  things = $db.collection("things")
  things.insert("name" => "Raw Thing")
  things.insert("name" => "Another Thing", "date" => Time.now)

  cursor = things.find("name" => "Raw Thing")
  puts cursor.next_object.inspect

Example 2:
  class Thing
    include MongoMapper::Document
    key :name, String, :required => true
    key :date, Time
  end

  thing = Thing.new
  thing.name = "My thing"
  thing.date = Time.now
  thing.save

  all_things = Thing.all
  puts all_things.map { |object| object.name }.inspect
@

trap("SIGINT") do
  irb.signal_handle
end

catch(:IRB_EXIT) do
  irb.eval_input
end

Version data entries

95 entries across 95 versions & 13 rubygems

Version Path
mongo_mapper-unstable-2010.2.26 bin/mmconsole
mongo_mapper-unstable-2010.2.25 bin/mmconsole
mongo_mapper-unstable-2010.2.24 bin/mmconsole
mongo_mapper-unstable-2010.2.23 bin/mmconsole
mongo_mapper-unstable-2010.2.22 bin/mmconsole
mongo_mapper-unstable-2010.2.19 bin/mmconsole
mongo_mapper-unstable-2010.2.18 bin/mmconsole
mongo_mapper-unstable-2010.2.17 bin/mmconsole
mongo_mapper-unstable-2010.2.16 bin/mmconsole
mongo_mapper-unstable-2010.2.15 bin/mmconsole
mongo_mapper-unstable-2010.2.12 bin/mmconsole
mongo_mapper-unstable-2010.2.11 bin/mmconsole
mongo_mapper-unstable-2010.2.10 bin/mmconsole
mongo_mapper-0.7.0 bin/mmconsole
mongo_mapper-unstable-2010.2.9 bin/mmconsole
mongo_mapper-unstable-2010.2.8 bin/mmconsole
mongo_mapper-unstable-2010.2.5 bin/mmconsole
mongo_mapper-unstable-2010.2.4 bin/mmconsole
novelys_mongo_mapper-0.6.12 bin/mmconsole
novelys_mongo_mapper-0.6.11 bin/mmconsole