lib/oct.rb in oct-0.2.0 vs lib/oct.rb in oct-0.3.1

- old
+ new

@@ -1,8 +1,11 @@ # require all files here require 'rbconfig' +require 'oct/core/hash' +require 'oct/core/array' require 'oct/app' +require 'oct/settings' require 'oct/oct' # Master namespace module Oct @@ -18,10 +21,10 @@ end end # Platform constants unless defined?(BasicGem::WINDOWS) - WINDOWS = Config::CONFIG['host_os'] =~ /mswin|mingw/i - CYGWIN = Config::CONFIG['host_os'] =~ /cygwin/i + WINDOWS = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/i + CYGWIN = RbConfig::CONFIG['host_os'] =~ /cygwin/i end end