calrissian/src/calrissian.app.src

44 lines
1.2 KiB
Text
Raw Normal View History

2014-04-24 04:47:45 +00:00
%% -*- erlang -*-
2014-04-24 20:08:27 +00:00
{application, 'calrissian',
2014-04-24 04:47:45 +00:00
[
%% A quick description of the application.
2014-04-24 20:08:27 +00:00
{description, "Monads for LFE"},
2014-04-24 04:47:45 +00:00
%% The version of the application
2014-07-10 03:02:19 +00:00
{vsn, "0.1.0"},
2014-04-24 04:47:45 +00:00
%% All modules used by the application.
{modules,
[
2014-07-10 03:02:19 +00:00
'calrissian-monad',
'calrissian-state',
'calrissian-identity-monad',
'calrissian-maybe-monad',
'calrissian-error-monad',
'calrissian-state-transformer',
'calrissian-util'
2014-04-24 04:47:45 +00:00
]},
%% All of the registered names the application uses. This can be ignored.
{registered, []},
%% Applications that are to be started prior to this one. This can be ignored
%% leave it alone unless you understand it well and let the .rel files in
%% your release handle this.
{applications,
[
kernel,
stdlib
]},
%% OTP application loader will load, but not start, included apps. Again
%% this can be ignored as well. To load but not start an application it
%% is easier to include it in the .rel file followed by the atom 'none'
{included_applications, []},
%% configuration parameters similar to those in the config file specified
%% on the command line. can be fetched with gas:get_env
{env, []}
]
2014-04-24 20:08:27 +00:00
}.