Project

opendsl

0.0
No commit activity in last 3 years
No release in over 3 years
OpenDSL is the ultimate DSL system. It marries Ruby's metaprogramming chops with it's versitle mixin system to create a remarkably simple but incredibly powerful DSL framework.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
 Project Readme

OpenDSL¶ ↑

Homepage | Source Code | Mailing List | Issue Tracker

<img src=“http://travis-ci.org/rubyworks/opendsl.png” />

DESCRIPTION¶ ↑

OpenDSL provides an open nomenclature for writing domain specific instructions. The idea is inline with the idea of duck-typing. You can allow domain instructions to be given up front free of restriction, then applying them later their correctness plays out as they are utilized.

The library is especailly useful for plugins systems.

RELEASE NOTES¶ ↑

Please see HISTORY.rdoc file.

SYNOPSIS¶ ↑

There are a few different ways in which this library can be put to use, but the basic idea for all of them can be demonstrated simply enough.

Foo = OpenDSL.new do
  foo do
    'foo'
  end
end

class Something
  include Foo

  def foobar
    foo + 'bar'
  end
end

OpenDSL.new creates a subclass of Module. Indeed, this library was orginally called OpenModule, but the name was changed to focus on it’s utility, rather than it’s implementation. Since an OpenDSL object is a module you can use it just like any other module.

HOW TO INSTALL¶ ↑

To install with RubyGems simply open a console and type:

gem install opendsl

Site installation requires Setup.rb (gem install setup), then download the tarball package and type:

tar -xvzf openmodule-1.0.0.tgz
cd opendsl-1.0.0.tgz
sudo setup.rb all

Windows users use ‘ruby setup.rb all’.

COPYRIGHTS¶ ↑

Copyright © 2009 Thomas Sawyer

This program is ditributed unser the terms of the FreeBSD license.

See COPYING.rdoc file for details.