Skip to content

Instantly share code, notes, and snippets.

@rfunduk
Created August 16, 2011 16:20
Show Gist options
  • Save rfunduk/1149464 to your computer and use it in GitHub Desktop.
Save rfunduk/1149464 to your computer and use it in GitHub Desktop.
module Comfy
class Database
# we'll use some other Comfy:: classes here
include Comfy
def initialize( name )
# setup the instance using 'name'
end
end
end
require 'comfy/config'
require 'comfy/database'
require 'comfy/document'
require 'comfy/view'
require 'rubygems'
require 'rest_client'
require 'json'
$:.unshift( File.expand_path( __FILE__ ) )
require 'comfy/config'
require 'core_ext/date_time'
require 'helpers/rcw'
require 'comfy/exceptions'
require 'comfy/response'
require 'comfy/database'
require 'comfy/document'
require 'comfy/view'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment