0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Rack Middleware for node manipulation.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

Runtime

>= 1.4.0
>= 1.0.0
 Project Readme

Rack::Nokogiri Version Build Status Abandoned

Rack Middleware that allows you to manipulate the nodes in your HTML response however you like.

Installation

Add this line to your application's Gemfile:

gem 'rack-nokogiri'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-nokogiri

Usage

Adding Rack::Nokogiri to a Rails application

To wrap all <p> with class target with a div, we could do something like this:

require 'rack/nokogiri'

class Application < Rails::Application
  config.middleware.use Rack::Nokogiri, css: 'p.target' do |nodes|
    nodes.wrap '<div class="wrapper"></div>'
  end
end

If we wanted to use XPath instead of CSS selectors, we could do this instead:

require 'rack/nokogiri'

class Application < Rails::Application
  config.middleware.use Rack::Nokogiri, xpath: "//p[@class='target']" do |nodes|
    nodes.wrap '<div class="wrapper"></div>'
  end
end

Adding Rack::Nokogiri to a Sinatra application

For Sinatra we would do:

require 'sinatra'
require 'rack/nokogiri'

use Rack::Nokogiri, css: 'p.target' do |nodes|
  nodes.wrap '<div class="wrapper"></div>'
end

get('/') do
  '<p class="target">Hello World!</p>'
end

Adding Rack::Nokogiri to a Rackup application

For a Rackup app we would do:

require 'rack'
require 'rack/nokogiri'

use Rack::Nokogiri, css: 'p.target' do |nodes|
  nodes.wrap '<div class="wrapper"></div>'
end

run lambda { |env|
  [200, {'Content-Type' => 'text/html'}, ['<p class="target">Hello World!</p>']]
}

Meta

Contributors

License

Copyright (c) 2013 Daniel Perez Alvarez (unindented.org). This is free software, and may be redistributed under the terms specified in the LICENSE file.