Skip to content

Instantly share code, notes, and snippets.

@xenda
Created June 4, 2012 14:27
Show Gist options
  • Save xenda/2868721 to your computer and use it in GitHub Desktop.
Save xenda/2868721 to your computer and use it in GitHub Desktop.
# Sitio 1
class Product < ActiveRecord::Base
end
class ProductController < ApplicationController
respond_to :html, :json, :xml
end
# Cliente
class Product < ActiveResource::Base
self.site = "http://api.otrositio:3000/"
end
Product.first
Product.create name: "La mejor laptop de tooda tu vida"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment