-
Notifications
You must be signed in to change notification settings - Fork 1
/
.ahnrc
34 lines (28 loc) · 1.16 KB
/
.ahnrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Adhearsion Runtime Configuration.
# You can use the "gems" section to force Adhearsion to load a particular version of a gem.
# This is useful when a component require()s a gem, but you don't want it to use the latest one installed on the system.
# For example, if a component require()s activerecord, sucking in the latest on the system, and then you enable a Rails app
# which wants a particular version of activerecord, RubyGems will raise an error saying "you cannot activate two versions of
# the same gem". Note: specifying the version, source and require names is optional, but you must include a : after the gem name to make it a YAML key/value pair (with a nil value).
gems:
# twitter:
# hpricot:
# rack:
# # require() one library when initializing:
# require: rack
# memcache-client:
# version >= 1.5.2
# require:
# # require() an Array of libraries when initializing:
# - memcache
# - memcache_util
# activerecord:
# version: >= 2.1.0
# aasm:
# source: http://gems.github.com
paths:
# All paths are relative to this file's directory
init: config/startup.rb
dialplan: dialplan.rb
events: events.rb
models: models/*.rb