Sha256: 0c1cd62cc007fdfab6a7e0ded89f88d8ffdaca0408ce4cb6146347b6bde3ea76

Contents?: true

Size: 531 Bytes

Versions: 10

Compression:

Stored size: 531 Bytes

Contents

#!/usr/bin/env ruby

require_relative './helper'
require 'yaml'
require 'fileutils'
require 'mongo'

ROOT_FOLDER = "./standalone"
maker = MongoEnvMaker.new(ROOT_FOLDER)

puts "Creating 2 standalone dbs: localhost:27018 & localhost:27019"
puts "create the directories"

maker.spawn(27018)
maker.spawn(27019)

puts ">> pids: #{maker.pids}"

File.open( File.expand_path("./#{ROOT_FOLDER}/.processes"), 'w' ) do |out|
  YAML.dump( maker.pids, out )
end

sleep 2

puts "Seed 27018 with some data..."
DummyData.seed("localhost", 27018)

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mongo-db-utils-0.2.1 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.2.0 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.6 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.5 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.4 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.3 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.2 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.1.0 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.0.9.3 integration-test-env/create_two_standalone_dbs
mongo-db-utils-0.0.9.2 integration-test-env/create_two_standalone_dbs