Sha256: 40ba6d51baa80901bb8980de94c2d4bef2ad1fdc4fdaa5c9aaa71c498de4881c

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8

Adhearsion.config do |config|
<% unless options[:empty] %>
  # Centralized way to specify any Adhearsion core or plugin configuration
  # - Execute rake config:show to view the active configuration values
  #
  # To update a plugin configuration you can write either:
  #
  #    * Option 1
  #        Adhearsion.config.<plugin-name> do |config|
  #          config.<key> = <value>
  #        end
  #
  #    * Option 2
  #        Adhearsion.config do |config|
  #          config.<plugin-name>.<key> = <value>
  #        end
<% end %>
  config.env :development do
    config.core.logging.level = :debug
  end

  ##
  # Use with Rayo over XMPP (eg Voxeo PRISM or FreeSWITCH mod_rayo)
  #
  # config.core.username = "usera@freeswitch.local-dev.mojolingo.com" # Your XMPP JID for use with Rayo
  # config.core.password = "1" # Your XMPP password

  ##
  # Use with Asterisk
  #
  # config.core.type = :asterisk # Use Asterisk
  # config.core.username = "manager" # Your AMI username
  # config.core.password = "password" # Your AMI password
  # config.core.host = "asterisk.local-dev.mojolingo.com" # Your AMI host
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
adhearsion-3.0.0.rc1 lib/adhearsion/generators/app/templates/adhearsion.erb
adhearsion-3.0.0.beta2 lib/adhearsion/generators/app/templates/adhearsion.erb