module TrustyCms

def configuration


For now it's exactly the same as calling Rails.configuration except that it will also yield itself to a block.
Returns the configuration object with which this application was initialized.
def configuration
  yield Rails.configuration if block_given?
  Rails.configuration
end