Merge pull request #131 from rlipscombe/rl-hide-on-load

Allow hiding 'on_load' attribute.
diff --git a/.gitignore b/.gitignore
index 0a68ef2..2564eed 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@
 *.sublime-project
 deps/*
 .rebar
+.deps.plt
diff --git a/Makefile b/Makefile
index 6085eed..8ec5837 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 PLTFILE=$(CURDIR)/.deps.plt
-APP_DEPS=kernel stdlib eunit tools compiler
+APP_DEPS=kernel stdlib eunit tools compiler erts
 ERLFLAGS= -pa $(CURDIR)/.eunit -pa $(CURDIR)/ebin -pa $(CURDIR)/deps/*/ebin
 
 REBAR="./rebar"
diff --git a/src/meck_history.erl b/src/meck_history.erl
index 526186a..e8c22d2 100644
--- a/src/meck_history.erl
+++ b/src/meck_history.erl
@@ -24,6 +24,7 @@
 -export_type([meck_mfa/0]).
 -export_type([successfull_call/0]).
 -export_type([faulty_call/0]).
+-export_type([history_record/0]).
 -export_type([history/0]).
 
 -export([get_history/2]).