Sha256: 67db2e59c9735f14822d2dc61bacba46e6a870f14d40aafb4dba4b647a14e6a2
Contents?: true
Size: 480 Bytes
Versions: 1
Compression:
Stored size: 480 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
smartcloud-0.0.95 | lib/smartcloud.rb |