Skip to content

Instantly share code, notes, and snippets.

@stonean
Created July 27, 2011 23:49

Revisions

  1. Andrew Stone revised this gist Jul 28, 2011. 1 changed file with 6 additions and 6 deletions.
    12 changes: 6 additions & 6 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,10 @@
    / Slim source
    json
    project Slim JSON
    url = slim_url
    contributors
    - people
    username = username

    project Slim JSON
    url = slim_url
    contributors
    - people
    username = username


    Where slim_url is a method that returns 'https://github.com/stonean/slim'
  2. Andrew Stone revised this gist Jul 28, 2011. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,13 +1,15 @@
    / Slim source
    json
    project Slim JSON
    url = https://github.com/stonean/slim
    url = slim_url
    contributors
    - people
    username = username


    Where people = [ { username: 'stonean' }, { username: 'minad' }, { username: 'fredwu' } ]
    Where slim_url is a method that returns 'https://github.com/stonean/slim'
    and people = [ { username: 'stonean' }, { username: 'minad' }, { username: 'fredwu' } ]


    / Result
    { "project": "Slim JSON",
  3. Andrew Stone revised this gist Jul 27, 2011. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -7,7 +7,7 @@
    username = username


    Where contributors = [ { username: 'stonean' }, { username: 'minad' }, { username: 'fredwu' } ]
    Where people = [ { username: 'stonean' }, { username: 'minad' }, { username: 'fredwu' } ]

    / Result
    { "project": "Slim JSON",
  4. Andrew Stone created this gist Jul 27, 2011.
    20 changes: 20 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    / Slim source
    json
    project Slim JSON
    url = https://github.com/stonean/slim
    contributors
    - people
    username = username


    Where contributors = [ { username: 'stonean' }, { username: 'minad' }, { username: 'fredwu' } ]

    / Result
    { "project": "Slim JSON",
    "url": "https://github.com/stonean/slim",
    "contributors": [
    { "username": "stonean" },
    { "username": "minad" },
    { "username": "fredwu" }
    ]
    }