Sha256: 75b20d1e69927a70844f89c017568ddc699934055b2e188b3c23999a7ffb102c
Contents?: true
Size: 510 Bytes
Versions: 1
Compression:
Stored size: 510 Bytes
Contents
require "ostruct" require "logger" $stdout.sync = true logger = Logger.new($stdout) # 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.94 | lib/smartcloud.rb |