Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rack-raml

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-raml

  • 0.1.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Rack::Raml

Build Status

A mountable mock server for your RAML specifications based on Rack.

Note: This is not intended for use in production environments.

Installation

Add this line to your application's Gemfile:

gem 'rack-raml'

Usage

Rack::Raml implements a Rack compatible application that responds to #call. Therefore, it can be used with any Rack-based web framework.

Rails

To use with Rails, simply point specific URLs at an instance of Rack::Raml::App like so:

MyApplication.routes.draw do
  # ...

  Rack::Raml.routes Rails.root.join('path/to/spec.raml') do |raml_app|
    get '/api/v1/users/:id', to: raml_app
  end
end
Sinatra

To use with Sinatra, you have a few options. The easiest way is to define your route, and invoke #process.

raml_file = File.expand_path('../path/to/spec.raml', __FILE__)
raml_app = Rack::Raml.create(raml_file)

get '/api/v1/users/:id' do
  raml_app.process(request)
end

Otherwise, you might configure Rack::Raml in your config.ru.

Example RAML
#%RAML 0.8
---
title: Dummy API
baseUri: https://dummy-api.com/api/{version}
version: v1

/users:
  /{id}:
    displayName: Find a user
    get:
      responses:
        200:
          description: User was found.
          body:
            application/json:
              example: |-
                {
                  "id": 1,
                  "first_name": "John",
                  "last_name": "Doe"
                }

Status Codes

In RAML, you'll often specify multiple status codes that your server might respond with. By default, Rack::Raml will respond with the lowest status code that you've specified. So, for example, if you've declared a 200 and a 401 response, it will respond with the 200 response code unless otherwise instructed.

You can force Rack::Raml to use a specific status code by requesting the url with the _code query parameter. For example:

$ curl http://localhost:3000/api/v1/users?_code=401

Content Types

The server will respond with the content type that matches the request. If the request does not specify a content type, Rack::Raml will assume you want application/json.

You can force Rack::Raml to use a specific content type by requesting the url with the _type query parameter. For example:

$ curl http://localhost:3000/api/v1/users?_type=text/plain

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rack-raml.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 08 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc