I want to expose multiple values from attributes from an directive to the $scope. The directives are generated dynamically and looks like this example:
<my-directive first-value="foo" second-value="bar" third-value="foobar"></my-directive>
I need the values in the $scope for give them to the template and work with them.