mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
Using relative paths
This commit is contained in:
parent
f591ac63a5
commit
9a69a1d425
1 changed files with 24 additions and 24 deletions
|
@ -5,28 +5,28 @@ module Fog
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'fog/aws/core'
|
require File.expand_path('../aws/core', __FILE__)
|
||||||
|
|
||||||
require 'fog/aws/auto_scaling'
|
require File.expand_path('../aws/auto_scaling', __FILE__)
|
||||||
require 'fog/aws/beanstalk'
|
require File.expand_path('../aws/beanstalk', __FILE__)
|
||||||
require 'fog/aws/cdn'
|
require File.expand_path('../aws/cdn', __FILE__)
|
||||||
require 'fog/aws/cloud_formation'
|
require File.expand_path('../aws/cloud_formation', __FILE__)
|
||||||
require 'fog/aws/cloud_watch'
|
require File.expand_path('../aws/cloud_watch', __FILE__)
|
||||||
require 'fog/aws/compute'
|
require File.expand_path('../aws/compute', __FILE__)
|
||||||
require 'fog/aws/data_pipeline'
|
require File.expand_path('../aws/data_pipeline', __FILE__)
|
||||||
require 'fog/aws/dns'
|
require File.expand_path('../aws/dns', __FILE__)
|
||||||
require 'fog/aws/dynamodb'
|
require File.expand_path('../aws/dynamodb', __FILE__)
|
||||||
require 'fog/aws/elasticache'
|
require File.expand_path('../aws/elasticache', __FILE__)
|
||||||
require 'fog/aws/elb'
|
require File.expand_path('../aws/elb', __FILE__)
|
||||||
require 'fog/aws/emr'
|
require File.expand_path('../aws/emr', __FILE__)
|
||||||
require 'fog/aws/federation'
|
require File.expand_path('../aws/federation', __FILE__)
|
||||||
require 'fog/aws/glacier'
|
require File.expand_path('../aws/glacier', __FILE__)
|
||||||
require 'fog/aws/iam'
|
require File.expand_path('../aws/iam', __FILE__)
|
||||||
require 'fog/aws/rds'
|
require File.expand_path('../aws/rds', __FILE__)
|
||||||
require 'fog/aws/redshift'
|
require File.expand_path('../aws/redshift', __FILE__)
|
||||||
require 'fog/aws/ses'
|
require File.expand_path('../aws/ses', __FILE__)
|
||||||
require 'fog/aws/simpledb'
|
require File.expand_path('../aws/simpledb', __FILE__)
|
||||||
require 'fog/aws/sns'
|
require File.expand_path('../aws/sns', __FILE__)
|
||||||
require 'fog/aws/sqs'
|
require File.expand_path('../aws/sqs', __FILE__)
|
||||||
require 'fog/aws/storage'
|
require File.expand_path('../aws/storage', __FILE__)
|
||||||
require 'fog/aws/sts'
|
require File.expand_path('../aws/sts', __FILE__)
|
||||||
|
|
Loading…
Reference in a new issue