Class: Fog::Google::Storage
- Inherits:
-
Service
- Object
- Service
- Fog::Google::Storage
- Defined in:
- lib/fog/google/storage.rb
Class Method Summary collapse
Class Method Details
.new(options = {}) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/fog/google/storage.rb', line 4 def self.new( = {}) begin fog_creds = Fog.credentials rescue StandardError fog_creds = nil end if .keys.include?(:google_storage_access_key_id) || (!fog_creds.nil? && fog_creds.keys.include?(:google_storage_access_key_id)) Fog::Google::StorageXML.new() else Fog::Google::StorageJSON.new() end end |