angular and rails partial locals

I'm trying to parameterize angular JS variables inside my rails partials, I have searched for the right syntax and couldn't able to get one. Not sure if I'm trying to do something that's not gonna work or just missing the correct syntax. Please provide me the right syntax or tell me the alternate way of approaching this.

= render "page/customPage", :items => "{{asset.set1}}"
= render "page/customPage", :items => "{{asset.set2}}"

In the Partial

%div{"ng-repeat" => "item in items"}
 %p do something

the above code didn't work