0.03
No release in over 3 years
Low commit activity in last 3 years
JSONP output helper for Sinatra
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.7.0
>= 0
~> 3.0
~> 3.0.9

Runtime

>= 1.0
 Project Readme

Sinatra::Jsonp Gem Version

JSONP output helper for Sinatra. Automatically detects callback params and returns proper JSONP output. If callback params where not detected it returns plain JSON. Works with jQuery jQuery.getJSON out of the box.

Installation

Gem install

gem install sinatra-jsonp

Gemfile

gem 'sinatra-jsonp'

Usage

Classic:

require "sinatra"
require "sinatra/jsonp"

get '/hello' do
  data = ["hello","hi","hallo"]
  JSONP data      # JSONP is an alias for jsonp method
end

# define your own callback as second string param
get '/hi' do
  data = ["hello","hi","hallo"]
  jsonp data, 'functionA'
end

# same with symbol param
get '/hallo' do
  data = ["hello","hi","hallo"]
  jsonp data, :functionB
end

Modular:

require "sinatra/base"
require "sinatra/jsonp"

class Foo < Sinatra::Base
  helpers Sinatra::Jsonp

  # Enable JSON pretty output
  #enable :json_pretty

  get '/' do
    data = ["hello","hi","hallo"]
    jsonp data
  end
end

Links

License

MIT License. See LICENSE for details.