An open API service indexing awesome lists of open source software.

https://github.com/sixarm/sixarm_ruby_dsl

SixArm.com » Ruby » Domain Specific Language (DSL) classes
https://github.com/sixarm/sixarm_ruby_dsl

dsl gem ruby

Last synced: 2 months ago
JSON representation

SixArm.com » Ruby » Domain Specific Language (DSL) classes

Awesome Lists containing this project

README

          

# SixArm.com → Ruby →
Domain Specific Language (DSL) classes

* Doc:
* Gem:
* Repo:

## Introduction

Domain Specific Language (DSL) classes

Example:

def parse_my_dsl(text)
if text==''
raise DSLError 'text is blank'
end
...continue...
end

For docs go to

Want to help? We're happy to get pull requests.

## Install

### Gem

To install this gem in your shell or terminal:

gem install sixarm_ruby_dsl

### Gemfile

To add this gem to your Gemfile:

gem 'sixarm_ruby_dsl'

### Require

To require the gem in your code:

require 'sixarm_ruby_dsl'