Giter VIP home page Giter VIP logo

rails-jsonapi-resources's Introduction

rails-jsonapi-resources

Build Status

Environment

  • Ruby 2.3.1
  • Ruby on Rails 5.1.1
  • use jsonapi-resources

Installation

git clone [email protected]:haliver/rails-jsonapi-resources.git

How to use?

  • First of all we will make a data.
bundle exec rake db:create
bundle exec rake db:migrate
bundle exec rake db:seed
  • As usual rails s

Response to result

  • e.g. curl -i -H "Accept: application/vnd.api+json" http://localhost:3000/users/1
{
  "data": {
    "id": "1",
    "type": "users",
    "links": {
      "self": "http://localhost:3000/users/1"
    },
    "attributes": {
      "name": "name0"
    },
    "relationships": {
      "reviews": {
        "links": {
          "self": "http://localhost:3000/users/1/relationships/reviews",
          "related": "http://localhost:3000/users/1/reviews"
        }
      }
    }
  }
}
  • e.g. curl -i -H "Accept: application/vnd.api+json" http://localhost:3000/reviews/1
{
  "data": {
    "id": "1",
    "type": "reviews",
    "links": {
      "self": "http://localhost:3000/reviews/1"
    },
    "attributes": {
      "comment": "name0は、0語りき"
    }
  }
}

rails-jsonapi-resources's People

Contributors

haliver avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.