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

https://github.com/roxasshadow/chainedexpressions

Chained expressions in ruby
https://github.com/roxasshadow/chainedexpressions

Last synced: over 1 year ago
JSON representation

Chained expressions in ruby

Awesome Lists containing this project

README

          

ChainedExpressions
==================

What is
-------
It implements chained expressions in Ruby. So you are able to do

```ruby
require 'chainedexpressions'
using ChainedExpressions

20 < 25
20 < 25 < 30

20 <= 25 <= 30 <= 30 <= 35

35 > 30 > 25 > 20
20 > 3 > 2.2 > -2

35 >= 30 >= 30 >= 25 >= 20
```

Install
-------
`$ gem install chainedexpressions`