Sha256: 40798e5f9b8568608f5cd5ef2a7127905a4985422045378328251e59b3dd9fc7
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
# Copyright (C) 2009-2014 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'support/mongo_orchestration/requestable' require 'support/mongo_orchestration/standalone' module MongoOrchestration extend self TYPES = { standalone: Standalone, #replica_set: ReplicaSet, #sharded_cluster: ShardedCluster } # The default base uri for mongo orchestration. # # @since 2.0.0 DEFAULT_BASE_URI = 'http://localhost:8889'.freeze # Get a Mongo Orchestration resource. # # @example Get the Mongo Orchestration resource. # MongoOrchestration.get(:standalone) # # @param [ Symbol ] type The type of resource. # @param [ Hash ] options Options for creating the resource. # # @option options [ String ] :path The path to use for the # Mongo Orchestration service. # # @return [ Standlone, ReplicaSet, ShardedCluster ] The resource. # # @since 2.0.0 def get(type, options = {}) TYPES[type].new(options) end # Raised when the Mongo Orchestration service is not available. # # @since 2.0.0 class ServiceNotAvailable < RuntimeError def initialize super("The Mongo Orchestration service is not available.") end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongo-2.0.0.rc | spec/support/mongo_orchestration.rb |
mongo-2.0.0.beta | spec/support/mongo_orchestration.rb |