Sha256: 8e7e091c6cb9dbf3256f8c5686ba1b38460492fe15e39ec13130379142d96374
Contents?: true
Size: 828 Bytes
Versions: 9
Compression:
Stored size: 828 Bytes
Contents
require_relative "souls/index" require_relative "souls/cli" require "active_support/core_ext/string/inflections" require "date" require "json" require "net/http" require "paint" require "whirly" require "tty-prompt" require "thor" require "resolv" module Souls extend Souls::Utils class Error < StandardError; end class << self attr_accessor :configuration def configure self.configuration ||= Configuration.new yield(configuration) end end class Configuration attr_accessor :app, :strain, :project_id, :region, :endpoint, :fixed_gems, :workers def initialize @app = nil @project_id = nil @region = nil @endpoint = nil @strain = nil @fixed_gems = nil @workers = nil end def instance_name "souls-#{@app}-db" end end end
Version data entries
9 entries across 9 versions & 1 rubygems