├── .gitignore ├── LICENSE ├── README.md ├── rebar.config ├── relx.config └── src ├── niffy.app.src ├── niffy.erl └── niffy_transform.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/README.md -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/rebar.config -------------------------------------------------------------------------------- /relx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/relx.config -------------------------------------------------------------------------------- /src/niffy.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/src/niffy.app.src -------------------------------------------------------------------------------- /src/niffy.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/src/niffy.erl -------------------------------------------------------------------------------- /src/niffy_transform.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaka/niffy/HEAD/src/niffy_transform.erl --------------------------------------------------------------------------------