This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby -rubygems | |
# | |
# Simple Ruby interface for evaluating Common Lisp code, for use with RSpec. | |
# Written in August 2010 by Arto Bendiken <http://ar.to/> | |
# | |
# This is free and unencumbered software released into the public domain. | |
require 'open4' # `sudo gem install open4` | |
require 'sxp' # `sudo gem install sxp` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby -rubygems | |
# | |
# Simple Ruby interface for evaluating Common Lisp code, for use with RSpec. | |
# Written in August 2010 by Arto Bendiken <http://ar.to/> | |
# | |
# This is free and unencumbered software released into the public domain. | |
require 'open4' # `sudo gem install open4` | |
require 'bert' | |
require 'bert/decode' |