Remove unnecessary full path usage with require

'fog/core' is already in the load path. No need to go to these extents.
This commit is contained in:
James Herdman 2012-05-14 14:10:36 -04:00
parent fa31f91912
commit b0a7473f5b
26 changed files with 26 additions and 26 deletions

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module AWS

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module BareMetalCloud

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Bluebox

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Brightbox

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module DNSimple

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module DNSMadeEasy

View File

@ -1,6 +1,6 @@
require 'nokogiri'
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
require 'fog/core/parser'
module Fog

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Ecloud

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module GoGrid

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Google

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module HP

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module IBM

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Libvirt

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Linode

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Local

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Ninefold

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module OpenStack

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Rackspace

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Slicehost

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module StormOnDemand

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
require 'fog/terremark/shared'
require 'fog/terremark/parser'

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Vcloud

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module VirtualBox

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Vmfusion

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
require 'digest/md5'
module Fog

View File

@ -1,4 +1,4 @@
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/core'
module Fog
module Zerigo