Skip to content

Instantly share code, notes, and snippets.

@hemalich
Created April 27, 2011 08:19
Show Gist options
  • Save hemalich/943908 to your computer and use it in GitHub Desktop.
Save hemalich/943908 to your computer and use it in GitHub Desktop.
// To create a new item using Restfulie
irb(main)> resource = Restfulie.at('http://localhost:3000/items').as("application/xml").post!(:item => { :name => "Mobile", :price => 5000})
// To access newly created Item
irb(main)> p resource.resource.item.name
"Mobile"
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment