summaryrefslogtreecommitdiff
path: root/ebin/fabric.app
blob: 2e0f8df36b513160991c676de8e3f1b6b9e52d80 (plain)
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
%% fabric app resource file

{application, fabric,
 [{description, "clustered couchdb functions"},
  {vsn, "0.1.0"},
  {modules, [
       fabric,
       fabric_all_databases,
       fabric_db_create,
       fabric_db_delete,
       fabric_db_doc_count,
       fabric_db_info,
       fabric_doc_missing_revs,
       fabric_doc_open,
       fabric_doc_open_revs,
       fabric_doc_update,
       fabric_rpc,
       fabric_util,
       fabric_view_all_docs
   ]},
  {registered, []},
  {included_applications, []},
  {applications, [kernel, stdlib, couch, rexi, membership]},
  {start_phases, []}
 ]}.