├── .gitignore ├── LICENSE ├── README.markdown ├── include └── bertconf.hrl ├── rebar ├── rebar.config ├── src ├── bertconf.app.src ├── bertconf.erl ├── bertconf_bert_loader.erl ├── bertconf_lib.erl └── bertconf_sup.erl └── test ├── bert_loader_SUITE.erl ├── bert_loader_SUITE_data ├── old_rtb_state.bert ├── old_rtb_state.consult ├── rtb_state.bert ├── rtb_state.consult └── rtb_state.not_bert ├── bertconf_SUITE.erl ├── bertconf_SUITE_data ├── old_rtb_state.bert ├── rtb_state.bert ├── rtb_state.consult └── rtb_state.not_bert ├── lib_SUITE.erl └── lib_SUITE_data ├── old_rtb_state.bert ├── rtb_state.bert ├── rtb_state.consult └── rtb_state.not_bert /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/README.markdown -------------------------------------------------------------------------------- /include/bertconf.hrl: -------------------------------------------------------------------------------- 1 | -record(tab, {name, id}). 2 | 3 | -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/rebar -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- 1 | {erl_opts, 2 | [debug_info]}. 3 | -------------------------------------------------------------------------------- /src/bertconf.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/src/bertconf.app.src -------------------------------------------------------------------------------- /src/bertconf.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/src/bertconf.erl -------------------------------------------------------------------------------- /src/bertconf_bert_loader.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/src/bertconf_bert_loader.erl -------------------------------------------------------------------------------- /src/bertconf_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/src/bertconf_lib.erl -------------------------------------------------------------------------------- /src/bertconf_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/src/bertconf_sup.erl -------------------------------------------------------------------------------- /test/bert_loader_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE.erl -------------------------------------------------------------------------------- /test/bert_loader_SUITE_data/old_rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE_data/old_rtb_state.bert -------------------------------------------------------------------------------- /test/bert_loader_SUITE_data/old_rtb_state.consult: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE_data/old_rtb_state.consult -------------------------------------------------------------------------------- /test/bert_loader_SUITE_data/rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE_data/rtb_state.bert -------------------------------------------------------------------------------- /test/bert_loader_SUITE_data/rtb_state.consult: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE_data/rtb_state.consult -------------------------------------------------------------------------------- /test/bert_loader_SUITE_data/rtb_state.not_bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bert_loader_SUITE_data/rtb_state.not_bert -------------------------------------------------------------------------------- /test/bertconf_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bertconf_SUITE.erl -------------------------------------------------------------------------------- /test/bertconf_SUITE_data/old_rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bertconf_SUITE_data/old_rtb_state.bert -------------------------------------------------------------------------------- /test/bertconf_SUITE_data/rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bertconf_SUITE_data/rtb_state.bert -------------------------------------------------------------------------------- /test/bertconf_SUITE_data/rtb_state.consult: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bertconf_SUITE_data/rtb_state.consult -------------------------------------------------------------------------------- /test/bertconf_SUITE_data/rtb_state.not_bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/bertconf_SUITE_data/rtb_state.not_bert -------------------------------------------------------------------------------- /test/lib_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/lib_SUITE.erl -------------------------------------------------------------------------------- /test/lib_SUITE_data/old_rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/lib_SUITE_data/old_rtb_state.bert -------------------------------------------------------------------------------- /test/lib_SUITE_data/rtb_state.bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/lib_SUITE_data/rtb_state.bert -------------------------------------------------------------------------------- /test/lib_SUITE_data/rtb_state.consult: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/lib_SUITE_data/rtb_state.consult -------------------------------------------------------------------------------- /test/lib_SUITE_data/rtb_state.not_bert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferd/bertconf/HEAD/test/lib_SUITE_data/rtb_state.not_bert --------------------------------------------------------------------------------