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
- Host: GitHub
- URL: https://github.com/sixarm/sixarm_ruby_dsl
- Owner: SixArm
- License: other
- Created: 2010-10-18T00:29:55.000Z (over 15 years ago)
- Default Branch: main
- Last Pushed: 2025-04-14T09:18:39.000Z (about 1 year ago)
- Last Synced: 2026-04-13T21:54:43.439Z (3 months ago)
- Topics: dsl, gem, ruby
- Language: Ruby
- Homepage: http://sixarm.com
- Size: 261 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codeowners: CODEOWNERS
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'