Skip to content

Commit

Permalink
Using relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
plribeiro3000 committed Mar 23, 2015
1 parent cba35fb commit 53143a1
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions lib/fog/aws.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ module AWS
end
end

require 'fog/aws/core'
require File.expand_path('../aws/core', __FILE__)

require 'fog/aws/auto_scaling'
require 'fog/aws/beanstalk'
require 'fog/aws/cdn'
require 'fog/aws/cloud_formation'
require 'fog/aws/cloud_watch'
require 'fog/aws/compute'
require 'fog/aws/data_pipeline'
require 'fog/aws/dns'
require 'fog/aws/dynamodb'
require 'fog/aws/elasticache'
require 'fog/aws/elb'
require 'fog/aws/emr'
require 'fog/aws/federation'
require 'fog/aws/glacier'
require 'fog/aws/iam'
require 'fog/aws/rds'
require 'fog/aws/redshift'
require 'fog/aws/ses'
require 'fog/aws/simpledb'
require 'fog/aws/sns'
require 'fog/aws/sqs'
require 'fog/aws/storage'
require 'fog/aws/sts'
require File.expand_path('../aws/auto_scaling', __FILE__)
require File.expand_path('../aws/beanstalk', __FILE__)
require File.expand_path('../aws/cdn', __FILE__)
require File.expand_path('../aws/cloud_formation', __FILE__)
require File.expand_path('../aws/cloud_watch', __FILE__)
require File.expand_path('../aws/compute', __FILE__)
require File.expand_path('../aws/data_pipeline', __FILE__)
require File.expand_path('../aws/dns', __FILE__)
require File.expand_path('../aws/dynamodb', __FILE__)
require File.expand_path('../aws/elasticache', __FILE__)
require File.expand_path('../aws/elb', __FILE__)
require File.expand_path('../aws/emr', __FILE__)
require File.expand_path('../aws/federation', __FILE__)
require File.expand_path('../aws/glacier', __FILE__)
require File.expand_path('../aws/iam', __FILE__)
require File.expand_path('../aws/rds', __FILE__)
require File.expand_path('../aws/redshift', __FILE__)
require File.expand_path('../aws/ses', __FILE__)
require File.expand_path('../aws/simpledb', __FILE__)
require File.expand_path('../aws/sns', __FILE__)
require File.expand_path('../aws/sqs', __FILE__)
require File.expand_path('../aws/storage', __FILE__)
require File.expand_path('../aws/sts', __FILE__)

0 comments on commit 53143a1

Please sign in to comment.