= Rack::API
Create web app APIs that respond to one or more formats using an elegant DSL.
== Installation
gem install rack-api
== Usage
=== Basic example
Rack::API.app do
prefix "api"
version :v1 do
get "users(.:format)" do
User.all
end
get "users/:id(.:format)" do
User.find(params[:id])
end
end
end
=== Rails Integration
First, set up your Gemfile like this:
gem "rack-api", "~> 0.1.0", :require => "rack/api"
Create your API somewhere. In this example, we'll add it to lib/api.rb.
Rack::API.app do
prefix "api"
version :v1 do
get "status(.:format)" do
{:success => true, :time => Time.now}
end
end
end
Load this file somehow. I'd create a config/initializers/dependencies.rb with something like
require "lib/api"
Finally, you can set up the API routing. Open config/routes.rb and add the following line:
mount Rack::API => "/"
If you define your API by inheriting from the Rack::API class, remember to mount your class instead.
mount MyAPI => "/"
For additional examples, see https://github.com/fnando/rack-api/tree/master/examples.
=== Using RSpec with Rack::API
You can easily test Rack::API apps by using Rack::Test. This applies to both RSpec and Test Unit. See what you need to do if you want to use it with RSpec.
First, open your spec/spec_helper.rb and add something like this:
require "rspec"
require "rack/test"
RSpec.configure do |config|
config.include Rack::Test::Methods
end
Then you can go to your spec file, say, spec/api_spec.rb. You need to define a helper method called +app+, which will point to your Rack::API (the class itself or your own class).
require "spec_helper"
describe Rack::API do
# Remember to use your own class if you
# inherited from Rack::API
def app; Rack::API; end
it "renders status page" do
get "/api/v1/status"
JSON.load(last_response.body).should == {:status => "running"}
last_response.status.should == 200
end
end
If you want to do expectations over basic authentication, you'll have some like this:
require "spec_helper"
describe Rack::API do
def basic_auth(username, password)
"Basic " + Base64.encode64("#{username}:#{password}")
end
it "requires authentication" do
get "/api/v1/status"
last_response.status.should == 401
end
it "grants access" do
get "/api/v1/status", {"HTTP_AUTHORIZATION" => basic_auth("john", "test")}
last_response.status.should == 200
end
end
To reduce duplication, you can move both basic_auth and app methods to a module, which will be included on RSpec.
RSpec.configure do |config|
config.include Rack::Test::Methods
config.include Helpers
end
Your Helpers module may look like this:
module Helpers
def app
Rack::API
end
def basic_auth(username, password)
"Basic " + Base64.encode64("#{username}:#{password}")
end
end
== Maintainer
* Nando Vieira (http://nandovieira.com.br)
== License
(The MIT License)
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.