-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Worked on another banner and enabled it.
- Loading branch information
Showing
7 changed files
with
104 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{dbl}}MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM{{end}} | ||
{{dbl}}MM""MMMMMMMM MM""""""""`M MM""""""""`MM{{end}}{{gry}} dP{{end}} | ||
{{dbl}}MM MMMMMMMM MM mmmmmmmM MM mmmmmmmMM{{end}}{{gry}} 88{{end}} | ||
{{blu}}MM MMMMMMMM M' MMMM M` MMMMM{{end}}{{gry}} dP. .dP 88d888b. .d8888b. 88d888b. 88{{end}} | ||
{{blu}}MM MMMMMMMM MM MMMMMMMM MM MMMMMMMMM{{end}}{{gry}} `8bd8' 88' `88 88ooood8 88' `88 88{{end}} | ||
{{gld}}MM MMMMMMMM MM MMMMMMMM MM MMMMMMMMM{{end}}{{gry}} .d88b. 88 88. ... 88. .88 88{{end}} | ||
{{pnk}}MM M MM MMMMMMMM MM .MM{{end}}{{gry}} dP' `dP dP `88888P' 88Y888P' dP{{end}} | ||
{{red}}MMMMMMMMMMMM MMMMMMMMMMMM MMMMMMMMMMMMM{{end}}{{gry}} 88 {{end}} | ||
{{gry}} dP{{end}} | ||
{{bgn}}xrepl{{end}}: {{grn}}{{xrepl-version}} {{cyn}}http://github.com/lfe/xrepl{{end}} | ||
{{bgn}}LFE{{end}}: {{grn}}{{lfe-version}} {{gld}}Get usage info with {{ylw}}(help){{end}} | ||
{{bgn}}Erlang{{end}}: {{grn}}{{erlang-version}} {{gld}}Exit xrepl with {{ylw}}(quit){{end}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{"1.2.0", | ||
[{<<"erlang_color">>,{pkg,<<"erlang_color">>,<<"1.0.0">>},0}, | ||
[{<<"bbmustache">>,{pkg,<<"bbmustache">>,<<"1.12.2">>},0}, | ||
{<<"erlang_color">>,{pkg,<<"erlang_color">>,<<"1.0.0">>},0}, | ||
{<<"lfe">>,{pkg,<<"lfe">>,<<"2.1.3">>},0}]}. | ||
[ | ||
{pkg_hash,[ | ||
{<<"bbmustache">>, <<"0CABDCE0DB9FE6D3318131174B9F2B351328A4C0AFBEB3E6E99BB0E02E9B621D">>}, | ||
{<<"erlang_color">>, <<"145FE1D2E65C4516E4F03FEFCA6C2F47EBAD5899D978D70382A5CFE643E4AC9E">>}, | ||
{<<"lfe">>, <<"6EFCB2BBC1FFC21DC5D1C092F00EFDB397EAC889474AC5C86EDF78A3557CC730">>}]}, | ||
{pkg_hash_ext,[ | ||
{<<"bbmustache">>, <<"688B33A4D5CC2D51F575ADF0B3683FC40A38314A2F150906EDCFC77F5B577B3B">>}, | ||
{<<"erlang_color">>, <<"6B17E5E589C8FEF540574C9EA32B67CEC2C8A44283AAFE474D6E5818FB3EE038">>}, | ||
{<<"lfe">>, <<"4E4BAD515A169AE418FEB7374EA1C8D741FAEA9D95E266CE343B45BCC377F55B">>}]} | ||
]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
(defmodule xrepl-vsn | ||
(export | ||
(get 0) (get 1) | ||
(all 0))) | ||
|
||
(defun get () | ||
(get 'xrepl)) | ||
|
||
(defun get (app-name) | ||
(application:load app-name) | ||
(case (application:get_key app-name 'vsn) | ||
(`#(ok ,vsn) vsn) | ||
(default default))) | ||
|
||
(defun version-arch () | ||
`#(architecture ,(erlang:system_info 'system_architecture))) | ||
|
||
(defun version+name (app-name) | ||
`#(,app-name ,(get app-name))) | ||
|
||
(defun versions-rebar () | ||
`(,(version+name 'rebar) | ||
,(version+name 'rebar3_lfe))) | ||
|
||
(defun versions-langs () | ||
`(,(version+name 'lfe) | ||
#(erlang ,(erlang:system_info 'otp_release)) | ||
#(emulator ,(erlang:system_info 'version)) | ||
#(driver ,(erlang:system_info 'driver_version)))) | ||
|
||
(defun all () | ||
(lists:append `((,(version+name 'xrepl)) | ||
,(versions-langs) | ||
,(versions-rebar) | ||
(,(version-arch))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters