Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Cleanups" #61

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -3,18 +3,18 @@ branches:
- master
language: erlang
otp_release:
- 19.2
- 19.1
- 19.0
- 18.3
- 18.0
- 17.4
- 17.0
env:
- LLVM_VERSION=3.9.1
- LLVM_VERSION=3.8.1
- LLVM_VERSION=3.7.1
- LLVM_VERSION=3.6.2
- LLVM_VERSION=3.5.2
- LLVM_VERSION=3.6.2
- LLVM_VERSION=3.7.1
- LLVM_VERSION=3.8.1
- LLVM_VERSION=3.9.0
matrix:
include:
- language: c
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -71,7 +71,7 @@ doc:

clean:
$(REBAR) clean
$(RM) .nifty_plt
rm .nifty_plt

mrproper: clean
$(RM) -r deps/
rm -rf deps/
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -8,14 +8,12 @@ Web page: [http://parapluu.github.io/nifty/]

## A Simple Example

Let's say we have two C files `mylib.h` and `mylib.c` which we want to use in our Erlang application:
Let's say we have two C files **mylib.h** and **mylib.c** which we want to use in our Erlang application:

```C
/* mylib.h */
extern int fib(int n);
```

```C
/* mylib.c */
int
fib(int n) {
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Expand Up @@ -9,7 +9,7 @@
]}.

{deps, [
{erlydtl, ".*", {git, "https://github.com/erlydtl/erlydtl", {tag, "0.12.1"}}},
{erlydtl, ".*", {git, "https://github.com/erlydtl/erlydtl", {tag, "0.12.0"}}},
{proper, ".*", {git, "https://github.com/manopapad/proper", "HEAD"}},
%% {rebar, ".*", {git, "https://github.com/TheGeorge/rebar.git", "HEAD"}} %% version with OTP 17.0 fixes
{rebar, ".*", {git, "https://github.com/rebar/rebar.git", "b0a8a11"}}
Expand Down