APIs
Rails
Don’t really
fit together.
Sinatra
mmm tasty...
But I’m good
programmer...
       http://threevirtues.com/ (1)
Enter...
Grape
 0.2.0!!!
Why@?#$%!
Simple...
class API < Grape::API
  get :users do
    # omitted for awesomeness
  end
end
Versions...
class API < Grape::API
  version “v1”
  get :users do
    # omitted for awesomeness
  end
end
Helpers...
class API < Grape::API
  helpers do
    def current_user
      User.find params[:id]
    end
  end
  # omitted for awesomeness
end
Multi-file...
class API < Grape::API
  version “v1”
  mount API_v1
  # omitted for awesomeness
end
Describing...
class API < Grape::API
  desc "Returns users", {params:{id: {}}}
  get :users do
    # omitted for awesomeness
  end
end
Demo...

More Related Content

PDF
FiNCのWeb API開発事情
PPTX
From Ruby to Node.js
PPTX
Using Visual Studio to build XAML Universal Apps
PDF
Rest api titouan benoit
PDF
Python interfaces
PDF
Be happy with Ruby on Rails - CEUNSP Itu
PPTX
Intro to Silex
PDF
Laravel Restful API and AngularJS
FiNCのWeb API開発事情
From Ruby to Node.js
Using Visual Studio to build XAML Universal Apps
Rest api titouan benoit
Python interfaces
Be happy with Ruby on Rails - CEUNSP Itu
Intro to Silex
Laravel Restful API and AngularJS

What's hot (20)

KEY
Defly
PPT
симфони это не страшно
KEY
Silex, the microframework
PPT
Web service with Laravel
PDF
Rails::Engine
PDF
Web services with laravel
PPTX
PDF
Drupal symfony
PPTX
Laravel Beginners Tutorial 1
PDF
RESTful API development in Laravel 4 - Christopher Pecoraro
PDF
Merb Plugins 101
KEY
More to RoC weibo
PPT
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
ODP
Como programar un blog REST
PDF
Silex: From nothing to an API
KEY
How to set up and test a Rails 3 Engine
ODP
Javascript laravel's friend
PPTX
Intro to Laravel
KEY
Rails web api 开发
Defly
симфони это не страшно
Silex, the microframework
Web service with Laravel
Rails::Engine
Web services with laravel
Drupal symfony
Laravel Beginners Tutorial 1
RESTful API development in Laravel 4 - Christopher Pecoraro
Merb Plugins 101
More to RoC weibo
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Como programar un blog REST
Silex: From nothing to an API
How to set up and test a Rails 3 Engine
Javascript laravel's friend
Intro to Laravel
Rails web api 开发
Ad

Viewers also liked (9)

PDF
8 Minutes On Rack
PDF
Rack Middleware
PDF
Restful API On Grape
PDF
The Grapes of Rapid (RubyConf 2010)
PPTX
Building an API using Grape
PDF
Rapid-ruby-api-on-grape
PPTX
Building RESTful APIs w/ Grape
PDF
The Mysteries Of JavaScript-Fu (RailsConf Ediition)
PPTX
Ruby On Grape
8 Minutes On Rack
Rack Middleware
Restful API On Grape
The Grapes of Rapid (RubyConf 2010)
Building an API using Grape
Rapid-ruby-api-on-grape
Building RESTful APIs w/ Grape
The Mysteries Of JavaScript-Fu (RailsConf Ediition)
Ruby On Grape
Ad

Recently uploaded (20)

PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PPTX
observCloud-Native Containerability and monitoring.pptx
PPTX
Benefits of Physical activity for teenagers.pptx
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
DOCX
search engine optimization ppt fir known well about this
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
August Patch Tuesday
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PPTX
Tartificialntelligence_presentation.pptx
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Hybrid model detection and classification of lung cancer
PDF
Five Habits of High-Impact Board Members
PDF
Enhancing emotion recognition model for a student engagement use case through...
sustainability-14-14877-v2.pddhzftheheeeee
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
observCloud-Native Containerability and monitoring.pptx
Benefits of Physical activity for teenagers.pptx
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Final SEM Unit 1 for mit wpu at pune .pptx
WOOl fibre morphology and structure.pdf for textiles
Hindi spoken digit analysis for native and non-native speakers
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
search engine optimization ppt fir known well about this
Module 1.ppt Iot fundamentals and Architecture
August Patch Tuesday
Zenith AI: Advanced Artificial Intelligence
O2C Customer Invoices to Receipt V15A.pptx
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Tartificialntelligence_presentation.pptx
A comparative study of natural language inference in Swahili using monolingua...
Hybrid model detection and classification of lung cancer
Five Habits of High-Impact Board Members
Enhancing emotion recognition model for a student engagement use case through...

Grape Presentation