Warden::Redirect
Simple gem for throwing redirects in warden.
Installation
Add this line to your application's Gemfile:
gem 'warden-redirect'
And then execute:
$ bundle
Or install it yourself as:
$ gem install warden-redirect
Usage
To use with a specific location:
throw :warden, Warden::Redirect.new('/location')
To use with a specific location and status:
throw :warden, Warden::Redirect.new('/location',301)
To use with a specific location, status and extra headers:
throw :warden, Warden::Redirect.new('/location',301, "X-SHALL-NOT-PASS" => true)
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request