summaryrefslogtreecommitdiff
path: root/ebin/fabric.app
blob: cf372125244578fc617b70c608cadf0e7a44f643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%% fabric app resource file

{application, fabric,
 [{description, "clustered couchdb functions"},
  {vsn, "0.1.0"},
  {modules, [
       fabric,
       fabric_all_databases,
       fabric_create_db,
       fabric_delete_db,
       fabric_get_db_info,
       fabric_missing_revs,
       fabric_open_doc,
       fabric_open_revs,
       fabric_rpc,
       fabric_update_docs,
       fabric_util
   ]},
  {registered, []},
  {included_applications, []},
  {applications, [kernel, stdlib, couch, rexi, dynomite]},
  {start_phases, []}
 ]}.