mirror of
https://github.com/correl/calrissian.git
synced 2024-11-23 11:09:58 +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
|
||||
============
|
||||
|
||||
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
|
||||
------------
|
||||
|
@ -31,7 +32,7 @@ Just add it to your ``rebar.config`` 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
|
||||
=====
|
||||
|
||||
Add content to me here!
|
||||
Coming soon
|
||||
|
||||
.. Links
|
||||
.. -----
|
||||
.. _erlando: https://github.com/rabbitmq/erlando
|
||||
.. _rebar: https://github.com/rebar/rebar
|
||||
.. _LFE: https://github.com/rvirding/lfe
|
||||
.. _lfeunit: https://github.com/lfe/lfeunit
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
PROJECT = maybe
|
||||
PROJECT = calrissian
|
||||
LIB = $(PROJECT)
|
||||
DEPS = ./deps
|
||||
BIN_DIR = ./bin
|
||||
|
@ -92,11 +92,11 @@ push-all:
|
|||
git push upstream --tags
|
||||
|
||||
install: compile
|
||||
@echo "Installing maybe ..."
|
||||
@echo "Installing calrissian ..."
|
||||
@PATH=$(SCRIPT_PATH) lfetool install lfe
|
||||
|
||||
upload: $(EXPM) get-version
|
||||
@echo "Preparing to upload maybe ..."
|
||||
@echo "Preparing to upload calrissian ..."
|
||||
@echo
|
||||
@echo "Package file:"
|
||||
@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(
|
||||
name: "maybe",
|
||||
description: "maybe DESCRIPTION",
|
||||
name: "calrissian",
|
||||
description: "Monads for LFE",
|
||||
version: "0.0.1",
|
||||
keywords: ["LFE", "Lisp", "Library", "API"],
|
||||
maintainers: [[name: "YOUR NAME", email: "YOUR@EMAIL.com"]],
|
||||
repositories: [[github: "YOUR_GITHUB_NAME/maybe]])
|
||||
keywords: ["LFE", "Lisp", "Library", "Monads"],
|
||||
maintainers: [[name: "Correl Roush", email: "correl@gmail.com"]],
|
||||
repositories: [[github: "correl/calrissian"]])
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
%% -*- erlang -*-
|
||||
{application, 'maybe',
|
||||
{application, 'calrissian',
|
||||
[
|
||||
%% A quick description of the application.
|
||||
{description, "My project description..."},
|
||||
{description, "Monads for LFE"},
|
||||
|
||||
%% The version of the application
|
||||
{vsn, "0.0.1"},
|
||||
|
@ -10,7 +10,8 @@
|
|||
%% All modules used by the application.
|
||||
{modules,
|
||||
[
|
||||
'maybe'
|
||||
'monad',
|
||||
'maybe-monad'
|
||||
]},
|
||||
|
||||
%% 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
|
||||
{env, []}
|
||||
]
|
||||
}.
|
||||
}.
|
Loading…
Reference in a new issue