Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rack-private

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-private

  • 0.2.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Rack::Private

Private Rack middleware purpose is to protect your Rack application from anonymous via a secret code form.

Installation

$ gem install rack-private

Usage

require 'rack-private'
use Rack::Private, :code => 'secret'

You can also define multiple codes.

use Rack::Private, :codes => ['secret', 'super-secret']

And provide your own template.

use Rack::Private, :code => 'secret', :template_path => Rails.root.join("app/templates/private.html")

You can specify exceptions, using strings or regular expressions

use Rack::Private, :code => 'secret', :except => ["public"]

This will allow access to any URL containing 'public'. If you want more control, use a regular expression:

use Rack::Private, :code => 'secret', :except => [/public$/]

This will only allow access to URLs that end in 'public'. You can use any expressions you want.

If you have a lot of exceptions, you can specify a block

use Rack::Private, :code => 'secret' do
  except /foo$/
  except 'public'
end

You can also specify a HTTP method in the block form

use Rack::Private, :code => 'secret' do
  except /foo$/, :method => 'post'
  except 'public', :method => :get
end

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Author

Thibaud Guillaume-Gentil

FAQs

Package last updated on 04 Jul 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc