couchrest_model/lib/couchrest.rb

17 lines
263 B
Ruby
Raw Normal View History

2008-09-12 06:00:44 +02:00
require "rubygems"
require 'json'
require 'rest_client'
$:.unshift File.expand_path(File.dirname(__FILE__))
require 'monkeypatches'
2008-09-12 06:09:24 +02:00
require 'couchrest/server'
require 'couchrest/database'
2008-09-12 06:00:44 +02:00
module CouchRest
def self.new(*opts)
Server.new(*opts)
end
end