Project

xml-dsl

0.0
No commit activity in last 3 years
No release in over 3 years
XML DSL and generator
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

xml-dsl

Gem Version Build Status License

XML DSL in Ruby

Installation

$ gem install xml-dsl

Usage

Code:

require 'xml-dsl'

file = xml do
  html do
    head do
    end

    body do
    end
  end
end

puts file

Output:

<html>
    <head/>
    <body/>
</html>

For more examples, see examples directory.

License

The Unlicense