class Majestic::Api::Configuration
Attributes
api_key[RW]
environment[RW]
user_agent[RW]
verbose[RW]
Public Class Methods
new()
click to toggle source
# File lib/majestic/api/configuration.rb, line 6 def initialize self.environment = :sandbox self.api_key = nil self.verbose = false self.user_agent = "Ruby Majestic API Client v#{Majestic::Api::VERSION}" end