Generate pretty API docs for your Rails APIs.
Check out a sample.
Please see the wiki for latest changes.
Add rspec_api_documentation to your Gemfile
gem 'rspec_api_documentation'
Bundle it!
$ bundle install
Set up specs.
$ mkdir spec/acceptance
$ vim spec/acceptance/orders_spec.rb
require 'spec_helper'
require 'rspec_api_documentation/dsl'
resource "Orders" do
get "/orders" do
example "Listing orders" do
do_request
status.should == 200
end
end
end
Generate the docs!
$ rake docs:generate
$ open doc/api/index.html
Also consider adding Raddocs as a viewer. It has much better HTML output than rspec_api_documentation.
gem 'raddocs'
RspecApiDocumentation.configure do |config|
config.format = :json
end
See the example
folder for a sample Rails app that has been documented.
# Values listed are the default values
RspecApiDocumentation.configure do |config|
# Set the application that Rack::Test uses
config.app = Rails.application
# Output folder
config.docs_dir = Rails.root.join("doc", "api")
# An array of output format(s). Possible values are :json, :html
config.format = [:html]
# Location of templates
config.template_path = "inside of the gem"
# Filter by example document type
config.filter = :all
# Filter by example document type
config.exclusion_filter = nil
# Used when adding a cURL output to the docs
config.curl_host = nil
# By default examples and resources are ordered by description. Set to true keep
# the source order.
config.keep_source_order = false
# Change the name of the API on index pages
config.api_name = "API Documentation"
# You can define documentation groups as well. A group allows you generate multiple
# sets of documentation.
config.define_group :public do |config|
# By default the group's doc_dir is a subfolder under the parent group, based
# on the group's name.
config.docs_dir = Rails.root.join("doc", "api", "public")
# Change the filter to only include :public examples
config.filter = :public
end
end
rspec_api_documentation lets you determine which examples get outputted into the final documentation.
All filtering is done via the :document
metadata key.
You tag examples with either a single symbol or an array of symbols.
:document
can also be false, which will make sure it does not get outputted.
resource "Account" do
get "/accounts" do
parameter :page, "Page to view"
# default :document is :all
example "Get a list of all accounts" do
do_request
status.should == 200
end
# Don't actually document this example, purely for testing purposes
example "Get a list on page 2", :document => false do
do_request(:page => 2)
status.should == 404
end
# With example_request, you can't change the :document
example_request "Get a list on page 3", :page => 3 do
status.should == 404
end
end
post "/accounts" do
parameter :email, "User email"
example "Creating an account", :document => :private do
do_request(:email => "[email protected]")
status.should == 201
end
example "Creating an account - errors", :document => [:private, :developers] do
do_request
status.should == 422
end
end
end
# All documents will be generated into the top folder, :document => false
# examples will never be generated.
RspecApiDocumentation.configure do |config|
# Exclude only document examples marked as 'private'
config.define_group :non_private do |config|
config.exclusion_filter = :private
end
# Only document examples marked as 'public'
config.define_group :public do |config|
config.filter = :public
end
# Only document examples marked as 'developer'
config.define_group :developers do |config|
config.filter = :developers
end
end
- rspec_api_documentation relies on a variable
client
to be the test client. Make sure you don't redefine this variable. - We make heavy use of RSpec metadata, you can actually use the entire gem without the DSL if you hand write the metadata.
resource "Account" do
get "/accounts" do
parameter :order, "Order of accounts"
example_request "Get a list of all accounts" do
status.should == 200
end
example "Get a list of all accounts in reverse order" do
do_request(:order => "reverse")
response_body.should == accounts.reverse
status.should == 200
end
end
get "/accounts/:id" do
let(:account) { Factory(:account) }
let(:id) { account.id }
example "Get an account", :document => :public do
do_request
status.should == 200
end
end
end