Sha256: f5708eec76624af059c7a038d023087c08071ca78b8875ad5874c5090d58a20f

Contents?: true

Size: 481 Bytes

Versions: 2

Compression:

Stored size: 481 Bytes

Contents

require "ostruct"
require "logger"

$stdout.sync = true

# The main Smartcloud driver
module Smartcloud
	def self.config
		@@config ||= OpenStruct.new
	end
end

Smartcloud.config.root_path = File.expand_path('../..', __FILE__)
Smartcloud.config.user_home_path = File.expand_path('~')
if File.exist?("#{Smartcloud.config.user_home_path}/.smartcloud/config/environment.rb")
	require "#{Smartcloud.config.user_home_path}/.smartcloud/config/environment"
end

require 'smartcloud/boot'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smartcloud-0.0.98 lib/smartcloud.rb
smartcloud-0.0.97 lib/smartcloud.rb