mirror of
https://github.com/correl/calrissian.git
synced 2024-11-23 19:19:57 +00:00
Renamed project to Calrissian
This commit is contained in:
parent
c0441ca1e7
commit
010e2c9327
5 changed files with 20 additions and 19 deletions
12
README.rst
12
README.rst
|
@ -1,13 +1,14 @@
|
||||||
###########
|
###########
|
||||||
maybe
|
calrissian
|
||||||
###########
|
###########
|
||||||
|
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
============
|
============
|
||||||
|
|
||||||
Add content to me here!
|
Calrissian is an implementation of monads in LFE, inspired by
|
||||||
|
`erlando`_, mostly as a learning exercise. So far, only the maybe
|
||||||
|
monad is supported.
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
------------
|
------------
|
||||||
|
@ -31,7 +32,7 @@ Just add it to your ``rebar.config`` deps:
|
||||||
|
|
||||||
{deps, [
|
{deps, [
|
||||||
...
|
...
|
||||||
{maybe, ".*", {git, "git@github.com:YOURNAME/maybe.git", "master"}}
|
{calrissian, ".*", {git, "git@github.com:correl/calrissian.git", "master"}}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,10 +47,11 @@ And then do the usual:
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
Add content to me here!
|
Coming soon
|
||||||
|
|
||||||
.. Links
|
.. Links
|
||||||
.. -----
|
.. -----
|
||||||
|
.. _erlando: https://github.com/rabbitmq/erlando
|
||||||
.. _rebar: https://github.com/rebar/rebar
|
.. _rebar: https://github.com/rebar/rebar
|
||||||
.. _LFE: https://github.com/rvirding/lfe
|
.. _LFE: https://github.com/rvirding/lfe
|
||||||
.. _lfeunit: https://github.com/lfe/lfeunit
|
.. _lfeunit: https://github.com/lfe/lfeunit
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
PROJECT = maybe
|
PROJECT = calrissian
|
||||||
LIB = $(PROJECT)
|
LIB = $(PROJECT)
|
||||||
DEPS = ./deps
|
DEPS = ./deps
|
||||||
BIN_DIR = ./bin
|
BIN_DIR = ./bin
|
||||||
|
@ -92,11 +92,11 @@ push-all:
|
||||||
git push upstream --tags
|
git push upstream --tags
|
||||||
|
|
||||||
install: compile
|
install: compile
|
||||||
@echo "Installing maybe ..."
|
@echo "Installing calrissian ..."
|
||||||
@PATH=$(SCRIPT_PATH) lfetool install lfe
|
@PATH=$(SCRIPT_PATH) lfetool install lfe
|
||||||
|
|
||||||
upload: $(EXPM) get-version
|
upload: $(EXPM) get-version
|
||||||
@echo "Preparing to upload maybe ..."
|
@echo "Preparing to upload calrissian ..."
|
||||||
@echo
|
@echo
|
||||||
@echo "Package file:"
|
@echo "Package file:"
|
||||||
@echo
|
@echo
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
(defmacro do statements
|
|
||||||
`(maybe:do-statement ',statements))
|
|
10
package.exs
10
package.exs
|
@ -1,7 +1,7 @@
|
||||||
Expm.Package.new(
|
Expm.Package.new(
|
||||||
name: "maybe",
|
name: "calrissian",
|
||||||
description: "maybe DESCRIPTION",
|
description: "Monads for LFE",
|
||||||
version: "0.0.1",
|
version: "0.0.1",
|
||||||
keywords: ["LFE", "Lisp", "Library", "API"],
|
keywords: ["LFE", "Lisp", "Library", "Monads"],
|
||||||
maintainers: [[name: "YOUR NAME", email: "YOUR@EMAIL.com"]],
|
maintainers: [[name: "Correl Roush", email: "correl@gmail.com"]],
|
||||||
repositories: [[github: "YOUR_GITHUB_NAME/maybe]])
|
repositories: [[github: "correl/calrissian"]])
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
%% -*- erlang -*-
|
%% -*- erlang -*-
|
||||||
{application, 'maybe',
|
{application, 'calrissian',
|
||||||
[
|
[
|
||||||
%% A quick description of the application.
|
%% A quick description of the application.
|
||||||
{description, "My project description..."},
|
{description, "Monads for LFE"},
|
||||||
|
|
||||||
%% The version of the application
|
%% The version of the application
|
||||||
{vsn, "0.0.1"},
|
{vsn, "0.0.1"},
|
||||||
|
@ -10,7 +10,8 @@
|
||||||
%% All modules used by the application.
|
%% All modules used by the application.
|
||||||
{modules,
|
{modules,
|
||||||
[
|
[
|
||||||
'maybe'
|
'monad',
|
||||||
|
'maybe-monad'
|
||||||
]},
|
]},
|
||||||
|
|
||||||
%% All of the registered names the application uses. This can be ignored.
|
%% All of the registered names the application uses. This can be ignored.
|
||||||
|
@ -34,4 +35,4 @@
|
||||||
%% on the command line. can be fetched with gas:get_env
|
%% on the command line. can be fetched with gas:get_env
|
||||||
{env, []}
|
{env, []}
|
||||||
]
|
]
|
||||||
}.
|
}.
|
Loading…
Reference in a new issue