Class: GoogleMapsEmbed::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/google_maps_embed/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



7
8
9
10
11
12
# File 'lib/google_maps_embed/configuration.rb', line 7

def initialize
  @api_key = nil
  @secret_key = nil
  @static_key = nil
  @dynamic_key = nil
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



5
6
7
# File 'lib/google_maps_embed/configuration.rb', line 5

def api_key
  @api_key
end

#dynamic_keyObject

Returns the value of attribute dynamic_key.



5
6
7
# File 'lib/google_maps_embed/configuration.rb', line 5

def dynamic_key
  @dynamic_key
end

#secret_keyObject

Returns the value of attribute secret_key.



5
6
7
# File 'lib/google_maps_embed/configuration.rb', line 5

def secret_key
  @secret_key
end

#static_keyObject

Returns the value of attribute static_key.



5
6
7
# File 'lib/google_maps_embed/configuration.rb', line 5

def static_key
  @static_key
end