File: google.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Fog
  module Parsers
    module Storage
      module Google
        autoload :AccessControlList, File.expand_path("../google/access_control_list", __FILE__)
        autoload :CopyObject, File.expand_path("../google/copy_object", __FILE__)
        autoload :GetBucket, File.expand_path("../google/get_bucket", __FILE__)
        autoload :GetBucketLogging, File.expand_path("../google/get_bucket_logging", __FILE__)
        autoload :GetBucketObjectVersions, File.expand_path("../google/get_bucket_object_versions", __FILE__)
        autoload :GetRequestPayment, File.expand_path("../google/get_request_payment", __FILE__)
        autoload :GetService, File.expand_path("../google/get_service", __FILE__)
      end
    end
  end
end