rails / jbuilder

Jbuilder: generate JSON objects with a Builder-style DSL
MIT License
4.34k stars 438 forks source link

keys with "@" symbol to use schema.org metadata using json-ld #238

Closed rajrathore closed 9 years ago

rajrathore commented 9 years ago

In my jbuilder template I'm not able to have keys starting with "@" symbol. e.g. "@context". What should I do. I want to get following json

<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "Article",
    "publisher": "The Ghost Blog",
    "author": {
        "@type": "Person",
        "name": "John O'Nolan",
        "image": "http://blog.ghost.org/content/images/2013/Nov/gravatar_j7_200.jpg",
        "url": "http://blog.ghost.org/author/john",
        "sameAs": "http://twitter.com/JohnONolan"
    },
    "headline": "11 Tools We Use at Ghost for Distributed Teams &amp; Digital Nomads",
    "url": "http://blog.ghost.org/distributed-team-tools/",
    "datePublished": "2014-12-15T14:09:18.000Z",
    "dateModified": "2014-12-18T22:13:49.000Z",
    "image": "http://blog.ghost.org/content/images/2014/12/ghostdistrib.jpg",
    "keywords": "Remote Work",
    "description": "Doing remote work is tough. The freedom is great, but distributed team tools and communication are essential to making it work. Here are our top apps...."
}
    </script>
rajrathore commented 9 years ago

Solved it! I figured it out. json.set! "@context", "http://schema.org"

Silly me :)