Sha256: 153441e46dac4ebf7da7995c95b3ade65ab6832bcff174be7700f36afbca7a8d

Contents?: true

Size: 1.24 KB

Versions: 42

Compression:

Stored size: 1.24 KB

Contents

module AWS
  class << self
    credential = (ARGV.first && :"#{ARGV.first}") || :default
    if Fog.credentials[:aws_access_key_id] && Fog.credentials[:aws_secret_access_key]

      def initialized?
        true
      end

      def [](service)
        @@connections ||= Hash.new do |hash, key|
          credentials = Fog.credentials.reject do |k, v|
            ![:aws_access_key_id, :aws_secret_access_key].include?(k)
          end
          hash[key] = case key
          when :ec2
            Fog::AWS::EC2.new(credentials)
          when :s3
            Fog::AWS::S3.new(credentials)
          end
        end
        @@connections[service]
      end

      def addresses
        self[:ec2].addresses
      end

      def directories
        self[:s3].directories
      end

      def flavors
        self[:ec2].flavors
      end

      def images
        self[:ec2].images
      end

      def servers
        self[:ec2].servers
      end

      def key_pairs
        self[:ec2].key_pairs
      end

      def security_groups
        self[:ec2].security_groups
      end

      def snapshots
        self[:ec2].snapshots
      end

      def volumes
        self[:ec2].volumes
      end

    else

      def initialized?
        false
      end

    end
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
fog-0.0.84 lib/fog/aws/bin.rb
fog-0.0.83 lib/fog/aws/bin.rb
fog-0.0.82 lib/fog/aws/bin.rb
fog-0.0.81 lib/fog/aws/bin.rb
fog-0.0.80 lib/fog/aws/bin.rb
fog-0.0.79 lib/fog/aws/bin.rb
fog-0.0.78 lib/fog/aws/bin.rb
fog-0.0.77 lib/fog/aws/bin.rb
fog-0.0.76 lib/fog/aws/bin.rb
fog-0.0.75 lib/fog/aws/bin.rb
fog-0.0.74 lib/fog/aws/bin.rb
fog-0.0.73 lib/fog/aws/bin.rb
fog-0.0.72 lib/fog/aws/bin.rb
fog-0.0.71 lib/fog/aws/bin.rb
fog-0.0.70 lib/fog/aws/bin.rb
fog-0.0.69 lib/fog/aws/bin.rb
fog-0.0.68 lib/fog/aws/bin.rb
fog-0.0.67 lib/fog/aws/bin.rb
fog-0.0.66 lib/fog/aws/bin.rb
fog-0.0.65 lib/fog/aws/bin.rb