├── README.adoc ├── cowboy ├── app.erl ├── app.src └── sup.erl ├── cowboyapp.template ├── ctsuite.erl ├── ctsuite.template ├── ejabberdmod.erl ├── ejabberdmod.template ├── escript ├── escript.template ├── eunit.erl ├── eunit.template ├── finapp.template ├── finapp ├── finapp.app.src ├── finapp_app.erl └── finapp_sup.erl ├── finevt.erl ├── finevt.template ├── finsrv.erl ├── finsrv.template ├── finsrv_proper_statem.erl ├── finsrv_proper_statem.template ├── finsup.erl ├── finsup.template ├── globals ├── project.template ├── project_Emakefile ├── project_Makefile ├── project_README ├── project_gitignore ├── project_rebar.config ├── rebar_compiler.erl ├── rebar_compiler.template ├── rebar_compiler_SUITE.erl ├── riak_pipe_vnode_worker.erl ├── riak_pipe_vnode_worker.template ├── webmachine_resource.erl └── webmachine_resource.template /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/README.adoc -------------------------------------------------------------------------------- /cowboy/app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/cowboy/app.erl -------------------------------------------------------------------------------- /cowboy/app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/cowboy/app.src -------------------------------------------------------------------------------- /cowboy/sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/cowboy/sup.erl -------------------------------------------------------------------------------- /cowboyapp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/cowboyapp.template -------------------------------------------------------------------------------- /ctsuite.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/ctsuite.erl -------------------------------------------------------------------------------- /ctsuite.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/ctsuite.template -------------------------------------------------------------------------------- /ejabberdmod.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/ejabberdmod.erl -------------------------------------------------------------------------------- /ejabberdmod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/ejabberdmod.template -------------------------------------------------------------------------------- /escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/escript -------------------------------------------------------------------------------- /escript.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/escript.template -------------------------------------------------------------------------------- /eunit.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/eunit.erl -------------------------------------------------------------------------------- /eunit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/eunit.template -------------------------------------------------------------------------------- /finapp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finapp.template -------------------------------------------------------------------------------- /finapp/finapp.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finapp/finapp.app.src -------------------------------------------------------------------------------- /finapp/finapp_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finapp/finapp_app.erl -------------------------------------------------------------------------------- /finapp/finapp_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finapp/finapp_sup.erl -------------------------------------------------------------------------------- /finevt.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finevt.erl -------------------------------------------------------------------------------- /finevt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finevt.template -------------------------------------------------------------------------------- /finsrv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsrv.erl -------------------------------------------------------------------------------- /finsrv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsrv.template -------------------------------------------------------------------------------- /finsrv_proper_statem.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsrv_proper_statem.erl -------------------------------------------------------------------------------- /finsrv_proper_statem.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsrv_proper_statem.template -------------------------------------------------------------------------------- /finsup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsup.erl -------------------------------------------------------------------------------- /finsup.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/finsup.template -------------------------------------------------------------------------------- /globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/globals -------------------------------------------------------------------------------- /project.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/project.template -------------------------------------------------------------------------------- /project_Emakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/project_Emakefile -------------------------------------------------------------------------------- /project_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/project_Makefile -------------------------------------------------------------------------------- /project_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/project_README -------------------------------------------------------------------------------- /project_gitignore: -------------------------------------------------------------------------------- 1 | ebin/* 2 | *.beam 3 | deps/* 4 | 5 | -------------------------------------------------------------------------------- /project_rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/project_rebar.config -------------------------------------------------------------------------------- /rebar_compiler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/rebar_compiler.erl -------------------------------------------------------------------------------- /rebar_compiler.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/rebar_compiler.template -------------------------------------------------------------------------------- /rebar_compiler_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/rebar_compiler_SUITE.erl -------------------------------------------------------------------------------- /riak_pipe_vnode_worker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/riak_pipe_vnode_worker.erl -------------------------------------------------------------------------------- /riak_pipe_vnode_worker.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/riak_pipe_vnode_worker.template -------------------------------------------------------------------------------- /webmachine_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/webmachine_resource.erl -------------------------------------------------------------------------------- /webmachine_resource.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbx6spp/rebar-templates/HEAD/webmachine_resource.template --------------------------------------------------------------------------------