sinatra/sinatra-contrib/README.md

181 lines
5.6 KiB
Markdown
Raw Permalink Normal View History

2016-07-20 05:11:08 +00:00
# Sinatra::Contrib
2011-03-29 08:05:12 +00:00
Collection of common Sinatra extensions, semi-officially supported.
2016-07-20 05:11:08 +00:00
## Goals
2011-03-29 08:05:12 +00:00
* For every future Sinatra release, have at least one fully compatible release
* High code quality, high test coverage
* Include plugins people usually ask for a lot
2016-07-20 05:11:08 +00:00
## Included extensions
2011-03-29 08:05:12 +00:00
2016-07-20 05:11:08 +00:00
### Common Extensions
2011-03-29 08:05:12 +00:00
These are common extension which will not add significant overhead or change any
behavior of already existing APIs. They do not add any dependencies not already
installed with this gem.
Currently included:
2017-05-16 00:20:50 +00:00
* [`sinatra/capture`][sinatra-capture]: Let's you capture the content of blocks in templates.
2011-05-09 06:36:48 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/config_file`][sinatra-config-file]: Allows loading configuration from yaml files.
2011-03-29 08:05:12 +00:00
2022-02-26 11:26:50 +00:00
* [`sinatra/content_for`][sinatra-content-for]: Adds Rails-style `content_for` helpers to Haml, Erb, Erubi
and Slim.
2011-03-29 08:05:12 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/cookies`][sinatra-cookies]: A `cookies` helper for reading and writing cookies.
2011-09-05 01:13:40 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/engine_tracking`][sinatra-engine-tracking]: Adds methods like `haml?` that allow helper
2011-05-09 06:36:48 +00:00
methods to check whether they are called from within a template.
2017-05-16 00:20:50 +00:00
* [`sinatra/json`][sinatra-json]: Adds a `#json` helper method to return JSON documents.
2011-03-29 08:05:12 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/link_header`][sinatra-link-header]: Helpers for generating `link` HTML tags and
2011-03-29 08:05:12 +00:00
corresponding `Link` HTTP headers. Adds `link`, `stylesheet` and `prefetch`
helper methods.
2017-05-16 00:20:50 +00:00
* [`sinatra/multi_route`][sinatra-multi-route]: Adds ability to define one route block for multiple
2011-09-05 01:13:27 +00:00
routes and multiple or custom HTTP verbs.
2017-05-16 00:20:50 +00:00
* [`sinatra/namespace`][sinatra-namespace]: Adds namespace support to Sinatra.
2011-05-09 06:36:48 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/respond_with`][sinatra-respond-with]: Choose action and/or template automatically
2011-03-29 08:05:12 +00:00
depending on the incoming request. Adds helpers `respond_to` and
`respond_with`.
2017-05-16 00:20:50 +00:00
* [`sinatra/custom_logger`][sinatra-custom-logger]: This extension allows you to define your own
logger instance using +logger+ setting. That logger then will
be available as #logger helper method in your routes and views.
2011-03-29 08:05:12 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/required_params`][sinatra-required-params]: Ensure if required query parameters exist
2014-04-19 16:28:49 +00:00
2016-07-20 05:11:08 +00:00
### Custom Extensions
2011-03-29 08:05:12 +00:00
These extensions may add additional dependencies and enhance the behavior of the
existing APIs.
Currently included:
2022-08-02 19:45:05 +00:00
* [`sinatra/reloader`][sinatra-reloader]: Automatically reloads Ruby files on code changes. **DEPRECATED**: Please consider
consider using an alternative like [rerun](https://github.com/alexch/rerun) or
[rack-unreloader](https://github.com/jeremyevans/rack-unreloader) instead.
2011-03-29 08:05:12 +00:00
2016-07-20 05:11:08 +00:00
### Other Tools
2011-03-29 08:05:12 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/extension`][sinatra-extension]: Mixin for writing your own Sinatra extensions.
2011-03-29 08:05:12 +00:00
2017-05-16 00:20:50 +00:00
* [`sinatra/test_helpers`][sinatra-test-helpers]: Helper methods to ease testing your Sinatra
2011-03-29 08:05:12 +00:00
application. Partly extracted from Sinatra. Testing framework agnostic
* `sinatra/quiet_logger`: Extension to exclude specific pathes from access log.
It works by patching Rack::CommonLogger
2016-07-20 05:11:08 +00:00
## Installation
2016-05-23 13:13:57 +00:00
Add `gem 'sinatra-contrib'` to *Gemfile*, then execute `bundle install`.
If you don't use Bundler, install the gem manually by executing `gem install sinatra-contrib` in your command line.
### Git
If you want to use the gem from git, for whatever reason, you can do the following:
```ruby
github 'sinatra/sinatra' do
gem 'sinatra-contrib'
end
```
Within this block you can also specify other gems from this git repository.
2016-07-20 05:11:08 +00:00
## Usage
2011-03-29 08:05:12 +00:00
2016-07-20 05:11:08 +00:00
### Classic Style
2011-03-29 08:05:12 +00:00
A single extension (example: sinatra-content-for):
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra'
require 'sinatra/content_for'
```
2011-03-29 08:05:12 +00:00
Common extensions:
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra'
require 'sinatra/contrib'
```
2011-03-29 08:05:12 +00:00
All extensions:
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra'
require 'sinatra/contrib/all'
```
2011-03-29 08:05:12 +00:00
2016-07-20 05:11:08 +00:00
### Modular Style
2011-03-29 08:05:12 +00:00
A single extension (example: sinatra-content-for):
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra/base'
require 'sinatra/content_for'
require 'sinatra/namespace'
2011-05-24 17:50:01 +00:00
class MyApp < Sinatra::Base
# Note: Some modules are extensions, some helpers, see the specific
# documentation or the source
helpers Sinatra::ContentFor
register Sinatra::Namespace
2011-05-24 17:50:01 +00:00
end
```
2011-03-29 08:05:12 +00:00
Common extensions:
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra/base'
require 'sinatra/contrib'
class MyApp < Sinatra::Base
register Sinatra::Contrib
end
```
2011-03-29 08:05:12 +00:00
All extensions:
2011-05-24 17:50:01 +00:00
``` ruby
require 'sinatra/base'
require 'sinatra/contrib/all'
2011-05-24 17:50:01 +00:00
class MyApp < Sinatra::Base
register Sinatra::Contrib
end
```
2016-07-20 05:11:08 +00:00
### Documentation
For more info check the [official docs](http://www.sinatrarb.com/contrib/) and
[api docs](https://www.rubydoc.info/gems/sinatra-contrib).
2017-05-16 00:20:50 +00:00
[sinatra-reloader]: http://www.sinatrarb.com/contrib/reloader
[sinatra-namespace]: http://www.sinatrarb.com/contrib/namespace
[sinatra-content-for]: http://www.sinatrarb.com/contrib/content_for
[sinatra-cookies]: http://www.sinatrarb.com/contrib/cookies
[sinatra-streaming]: http://www.sinatrarb.com/contrib/streaming
[sinatra-webdav]: http://www.sinatrarb.com/contrib/webdav
[sinatra-runner]: http://www.sinatrarb.com/contrib/runner
[sinatra-extension]: http://www.sinatrarb.com/contrib/extension
[sinatra-test-helpers]: https://github.com/sinatra/sinatra/blob/main/sinatra-contrib/lib/sinatra/test_helpers.rb
[sinatra-required-params]: http://www.sinatrarb.com/contrib/required_params
[sinatra-custom-logger]: http://www.sinatrarb.com/contrib/custom_logger
[sinatra-multi-route]: http://www.sinatrarb.com/contrib/multi_route
[sinatra-json]: http://www.sinatrarb.com/contrib/json
[sinatra-respond-with]: http://www.sinatrarb.com/contrib/respond_with
[sinatra-config-file]: http://www.sinatrarb.com/contrib/config_file
[sinatra-link-header]: http://www.sinatrarb.com/contrib/link_header
[sinatra-capture]: http://www.sinatrarb.com/contrib/capture
[sinatra-engine-tracking]: https://github.com/sinatra/sinatra/blob/main/sinatra-contrib/lib/sinatra/engine_tracking.rb
2017-05-16 00:20:50 +00:00