Module: MuckComments

Defined in:
lib/muck-comments/models/comment.rb,
lib/muck-comments/config.rb,
lib/muck-comments/engine.rb,
lib/muck-comments/models/commentable.rb

Overview

include MuckComments::Models::MuckCommentable

Defined Under Namespace

Modules: Models Classes: Configuration, Engine

Class Method Summary collapse

Class Method Details

.configurationObject



3
4
5
6
# File 'lib/muck-comments/config.rb', line 3

def self.configuration
  # In case the user doesn't setup a configure block we can always return default settings:
  @configuration ||= Configuration.new
end

.configure {|configuration| ... } ⇒ Object

Yields:



8
9
10
11
# File 'lib/muck-comments/config.rb', line 8

def self.configure
  self.configuration ||= Configuration.new
  yield(configuration)
end