module MeaningCloud

Top level name space for the entire Gem.

Constants

API_BASE

Public Class Methods

configuration() click to toggle source
# File lib/meaning-cloud.rb, line 9
def self.configuration
  @configuration ||=  Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/meaning-cloud.rb, line 13
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration) if block_given?
end