module BlazingDocs
Constants
- VERSION
Public Instance Methods
config()
click to toggle source
# File lib/blazingdocs.rb 12 def config 13 @config ||= Configuration.new 14 end
configure() { |config| ... }
click to toggle source
# File lib/blazingdocs.rb 8 def configure 9 yield(config) 10 end
create_client(api_key)
click to toggle source
# File lib/blazingdocs.rb 16 def create_client(api_key) 17 BlazingClient.new(api_key, config) 18 end