0.0
No commit activity in last 3 years
No release in over 3 years
Add a X-Robots-Tag: noindex header on a given condition.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
 Project Readme

rack-noindex

Rack middleware to add X-Robots-Tag: noindex header on a given condition.

Build Status Gem Version Code Climate

Usage

# config.ru

# By default it adds noindex header for domain matching `*.herokuapp.com`
use Rack::Noindex

# Set a custom condition using rack env and a lambda block :
use Rack::Noindex, lambda { |env| env['SERVER_NAME'] =~ /\.herokuapp\.com$/ }

Contributing

See CONTRIBUTING.md for more details on contributing and running test.

Credits

Made for fun and public development environments by @j15e.