Class: CouchDB::Server
- Inherits:
 - 
      Object
      
        
- Object
 - CouchDB::Server
 
 
- Includes:
 - Rest::Resource
 
- Defined in:
 - lib/couchdb.rb
 
Instance Method Summary collapse
- #databases ⇒ Object
 - 
  
    
      #initialize(host = "localhost", port = 5984)  ⇒ Server 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Server.
 
Methods included from Rest::Resource
Constructor Details
#initialize(host = "localhost", port = 5984) ⇒ Server
Returns a new instance of Server.
      11 12 13 14  | 
    
      # File 'lib/couchdb.rb', line 11 def initialize(host="localhost", port=5984) @host = host @port = port end  |