GitXplorerGitXplorer
j

misc

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
9be3389ee8b40b3810ff2fedd6d59eeebd2bcd66

maybe I should use rdoc locally before pushing

jjkamenik committed 15 years ago
Unverified
d83883decf2e130041fe0acc0e0d6f67f9dd4fbe

yep, really need coffee

jjkamenik committed 15 years ago
Unverified
1fd7f57b2b4cfefd3535145196db2b75c40d1cf9

tired, need coffee

jjkamenik committed 15 years ago
Unverified
fd1a502feffaa1a999c509b60d743a5c186d5a13

initial commit

jjkamenik committed 15 years ago

README

The README file for this repository.

= Intro A place for things that really have no where else to go.

= Logic DSL Stupid little DSL that prints human readable logic text from human readable ruby text. puts this.is('blue').and {that.is('blue').or that.is('green')}.and this.is('yellow') this is blue and (that is blue or that is green) and this is yellow

== Why would you use it You wouldn't. At least not in its current form. But you could do something like make Command reference a hash and make "is" and "is_not" do logic tests. Of course you would need to add "and" and "or" to either Object or TrueClass/FalseClass, but it would let you do this (if you cared).

if this.is('blue').and that.is('yellow') puts 'green' end