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
- Host: GitHub
- URL: https://github.com/roxasshadow/chainedexpressions
- Owner: RoxasShadow
- Created: 2014-01-30T11:34:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-02T23:43:49.000Z (over 12 years ago)
- Last Synced: 2025-02-08T02:45:32.545Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 172 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`