2011-12-06 17:58:09 -05:00
|
|
|
# Docile
|
|
|
|
|
|
|
|
Definition: *Ready to accept control or instruction; submissive* [[1]]
|
|
|
|
|
|
|
|
Tired of overly complex DSL libraries and hairy meta-programming?
|
2011-12-06 18:41:43 -05:00
|
|
|
|
|
|
|
Let's make our Ruby DSLs more docile...
|
2011-12-06 17:58:09 -05:00
|
|
|
|
|
|
|
[1]: http://www.google.com/search?q=docile+definition "Google"
|
|
|
|
|
2012-10-28 08:26:37 -04:00
|
|
|
[![Build Status](https://travis-ci.org/ms-ati/docile.png)](https://travis-ci.org/ms-ati/docile)
|
2012-10-28 08:39:12 -04:00
|
|
|
[![Dependency Status](https://gemnasium.com/ms-ati/docile.png)](https://gemnasium.com/ms-ati/docile)
|
2012-10-28 08:26:37 -04:00
|
|
|
|
2011-12-06 17:58:09 -05:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Let's treat an Array's methods as its own DSL:
|
|
|
|
|
|
|
|
``` ruby
|
2011-12-07 20:58:58 -05:00
|
|
|
Docile.dsl_eval([]) do
|
2011-12-06 17:58:09 -05:00
|
|
|
push 1
|
|
|
|
push 2
|
2011-12-06 18:41:43 -05:00
|
|
|
pop
|
|
|
|
push 3
|
2011-12-06 17:58:09 -05:00
|
|
|
end
|
|
|
|
#=> [1, 3]
|
|
|
|
```
|
|
|
|
|
|
|
|
Mutating (changing) the array is fine, but what you probably really want as your DSL is actually a [Builder Pattern][2].
|
|
|
|
|
2011-12-06 18:41:43 -05:00
|
|
|
For example, if you have a PizzaBuilder class that can already build a Pizza:
|
2011-12-06 17:58:09 -05:00
|
|
|
|
|
|
|
``` ruby
|
|
|
|
@sauce_level = :extra
|
2011-12-06 18:41:43 -05:00
|
|
|
pizza = PizzaBuilder.new.cheese.pepperoni.sauce(@sauce_level).build
|
|
|
|
#=> #<Pizza:0x00001009dc398 @cheese=true, @pepperoni=true, @bacon=false, @sauce=:extra>
|
2011-12-06 17:58:09 -05:00
|
|
|
```
|
|
|
|
|
2011-12-06 18:41:43 -05:00
|
|
|
Then you can use this same PizzaBuilder class as a DSL:
|
2011-12-06 17:58:09 -05:00
|
|
|
|
|
|
|
``` ruby
|
|
|
|
@sauce_level = :extra
|
2011-12-07 20:58:58 -05:00
|
|
|
pizza = Docile.dsl_eval(PizzaBuilder.new) do
|
2011-12-06 17:58:09 -05:00
|
|
|
cheese
|
|
|
|
pepperoni
|
|
|
|
sauce @sauce_level
|
|
|
|
end.build
|
2011-12-06 18:41:43 -05:00
|
|
|
#=> #<Pizza:0x00001009dc398 @cheese=true, @pepperoni=true, @bacon=false, @sauce=:extra>
|
2011-12-06 17:58:09 -05:00
|
|
|
```
|
|
|
|
|
2011-12-06 18:41:43 -05:00
|
|
|
It's just that easy!
|
|
|
|
|
2011-12-06 17:58:09 -05:00
|
|
|
[2]: http://stackoverflow.com/questions/328496/when-would-you-use-the-builder-pattern "Builder Pattern"
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
|
|
|
1. method lookup falls back from the DSL object to the block's context
|
|
|
|
2. local variable lookup falls back from the DSL object to the block's context
|
|
|
|
3. instance variables are from the block's context only
|
2011-12-06 18:41:43 -05:00
|
|
|
4. nested dsl evaluation
|
2011-12-06 17:58:09 -05:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ gem install docile
|
|
|
|
```
|
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
|
|
|
Documentation hosted on *rubydoc.info*: [Docile Documentation](http://rubydoc.info/gems/docile)
|
2012-10-28 08:26:37 -04:00
|
|
|
|
2011-12-06 17:58:09 -05:00
|
|
|
Or, read the code hosted on *github.com*: [Docile Code](https://github.com/ms-ati/docile)
|
|
|
|
|
2012-10-28 13:23:46 -04:00
|
|
|
## Status
|
|
|
|
|
2012-10-29 16:24:18 -04:00
|
|
|
Version 1.0 works on [all ruby versions](https://github.com/ms-ati/docile/blob/master/.travis.yml).
|
2012-10-28 13:23:46 -04:00
|
|
|
|
2011-12-06 17:58:09 -05:00
|
|
|
## Note on Patches/Pull Requests
|
|
|
|
|
|
|
|
* Fork the project.
|
|
|
|
* Setup your development environment with: gem install bundler; bundle install
|
|
|
|
* Make your feature addition or bug fix.
|
|
|
|
* Add tests for it. This is important so I don't break it in a
|
|
|
|
future version unintentionally.
|
|
|
|
* Commit, do not mess with rakefile, version, or history.
|
|
|
|
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
|
|
* Send me a pull request. Bonus points for topic branches.
|
|
|
|
|
|
|
|
## Copyright
|
|
|
|
|
2012-10-29 16:22:27 -04:00
|
|
|
Copyright (c) 2012 Marc Siegel. See LICENSE for details.
|